This reference page is linked to from the following overview topics: Enumeration mapping.
#include <mainpage.h>
Enumeration mapping. The way our C++ enumerations have been exposed in python is to use 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.