class documentation

class RevokeLinkedAppError(bb.Union): (source)

View In Hierarchy

Error returned by :meth:`dropbox.dropbox_client.Dropbox.team_linked_apps_revoke_linked_app`. 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.RevokeLinkedAppError.app_not_found: Application not found. :ivar team.RevokeLinkedAppError.member_not_found: Member not found. :ivar team.RevokeLinkedAppError.app_folder_removal_not_supported: App folder removal is not supported.

Method is_app_folder_removal_not_supported Check if the union tag is ``app_folder_removal_not_supported``.
Method is_app_not_found Check if the union tag is ``app_not_found``.
Method is_member_not_found Check if the union tag is ``member_not_found``.
Method is_other Check if the union tag is ``other``.
Class Variable app_folder_removal_not_supported Undocumented
Class Variable app_not_found Undocumented
Class Variable member_not_found Undocumented
Class Variable other Undocumented
Method _process_custom_annotations Undocumented
Class Variable _catch_all Undocumented
def is_app_folder_removal_not_supported(self): (source)

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

def is_app_not_found(self): (source)

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

def is_member_not_found(self): (source)

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

def is_other(self): (source)

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

app_folder_removal_not_supported = (source)

Undocumented

app_not_found = (source)

Undocumented

member_not_found = (source)

Undocumented

Undocumented

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

Undocumented

_catch_all: str = (source)

Undocumented