Enumeration mapping
 
 
 

There is also an Enumeration mapping class. C++ enumerations are exposed in Python by using the enumerated type name as a class name, and having each of the possible enum values as a separate data member. For example, with FBTimeMode's enum named 'kFBTimeModePAL', you would instead use FBTimeMode.kFBTimeModePAL in Python. Note that all ORSDK C++ enumerated types are exposed, including some which may not be relevant.