class documentation

class Feature(bb.Union): (source)

View In Hierarchy

A set of features that a Dropbox Business account may support. 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.Feature.upload_api_rate_limit: The number of upload API calls allowed per month. :ivar team.Feature.has_team_shared_dropbox: Does this team have a shared team root. :ivar team.Feature.has_team_file_events: Does this team have file events. :ivar team.Feature.has_team_selective_sync: Does this team have team selective sync enabled.

Method is_has_team_file_events Check if the union tag is ``has_team_file_events``.
Method is_has_team_selective_sync Check if the union tag is ``has_team_selective_sync``.
Method is_has_team_shared_dropbox Check if the union tag is ``has_team_shared_dropbox``.
Method is_other Check if the union tag is ``other``.
Method is_upload_api_rate_limit Check if the union tag is ``upload_api_rate_limit``.
Class Variable has_team_file_events Undocumented
Class Variable has_team_selective_sync Undocumented
Class Variable has_team_shared_dropbox Undocumented
Class Variable other Undocumented
Class Variable upload_api_rate_limit Undocumented
Method _process_custom_annotations Undocumented
Class Variable _catch_all Undocumented
def is_has_team_file_events(self): (source)

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

def is_has_team_selective_sync(self): (source)

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

def is_has_team_shared_dropbox(self): (source)

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

def is_other(self): (source)

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

def is_upload_api_rate_limit(self): (source)

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

has_team_file_events = (source)

Undocumented

has_team_selective_sync = (source)

Undocumented

has_team_shared_dropbox = (source)

Undocumented

Undocumented

upload_api_rate_limit = (source)

Undocumented

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

Undocumented

_catch_all: str = (source)

Undocumented