GSAxis not defined

So G3 now seems to handle axes with a new GSAxis class.
All good, but when I try to create one,
new_axis = GSAxis()
I get a NameError: name ‘GSAxis’ is not defined.

How do I add those? The doc doesnt provide any further information besides the fact that these are now a thing.

ps: I have the same issue with GSMetric objects

Edit: I can access and use the class if I import it myself:

import objc
GSAxis = objc.lookUpClass("GSAxis")

Added them to the wrapper.

1 Like