class documentation

class CustomQuotaError(bb.Union): (source)

Known subclasses: dropbox.team.SetCustomQuotaError

View In Hierarchy

Error returned when getting member custom quota. 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 team.CustomQuotaError.too_many_users: A maximum of 1000 users can be set for a single call.

Method is_other Check if the union tag is ``other``.
Method is_too_many_users Check if the union tag is ``too_many_users``.
Class Variable other Undocumented
Class Variable too_many_users Undocumented
Method _process_custom_annotations Undocumented
Class Variable _catch_all Undocumented
def is_other(self): (source)

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

def is_too_many_users(self): (source)

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

Undocumented

too_many_users = (source)

Undocumented

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

Undocumented

_catch_all: str = (source)

Undocumented