class documentation

class RateLimitReason(bb.Union): (source)

View In Hierarchy

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 auth.RateLimitReason.too_many_requests: You are making too many requests in the past few minutes. :ivar auth.RateLimitReason.too_many_write_operations: There are currently too many write operations happening in the user's Dropbox.

Method is_other Check if the union tag is ``other``.
Method is_too_many_requests Check if the union tag is ``too_many_requests``.
Method is_too_many_write_operations Check if the union tag is ``too_many_write_operations``.
Class Variable other Undocumented
Class Variable too_many_requests Undocumented
Class Variable too_many_write_operations 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_requests(self): (source)

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

def is_too_many_write_operations(self): (source)

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

Undocumented

too_many_requests = (source)

Undocumented

too_many_write_operations = (source)

Undocumented

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

Undocumented

_catch_all: str = (source)

Undocumented