class documentation

class AccountType(bb.Union): (source)

View In Hierarchy

What type of account this user has. This class acts as a tagged union. Only one of the ``is_*`` methods will return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. :ivar users_common.AccountType.basic: The basic account type. :ivar users_common.AccountType.pro: The Dropbox Pro account type. :ivar users_common.AccountType.business: The Dropbox Business account type.

Method is_basic Check if the union tag is ``basic``.
Method is_business Check if the union tag is ``business``.
Method is_pro Check if the union tag is ``pro``.
Class Variable basic Undocumented
Class Variable business Undocumented
Class Variable pro Undocumented
Method _process_custom_annotations Undocumented
Class Variable _catch_all Undocumented
def is_basic(self): (source)

Check if the union tag is ``basic``. :rtype: bool

def is_business(self): (source)

Check if the union tag is ``business``. :rtype: bool

def is_pro(self): (source)

Check if the union tag is ``pro``. :rtype: bool

Undocumented

business = (source)

Undocumented

Undocumented

def _process_custom_annotations(self, annotation_type, field_path, processor): (source)

Undocumented

_catch_all = (source)

Undocumented