class documentation

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 sharing.SharedLinkError.shared_link_not_found: The shared link wasn't found. :ivar sharing.SharedLinkError.shared_link_access_denied: The caller is not allowed to access this shared link. :ivar sharing.SharedLinkError.unsupported_link_type: This type of link is not supported; use :meth:`dropbox.dropbox_client.Dropbox.sharing_files` instead.

Method is_other Check if the union tag is ``other``.
Method is_shared_link_access_denied Check if the union tag is ``shared_link_access_denied``.
Method is_shared_link_not_found Check if the union tag is ``shared_link_not_found``.
Method is_unsupported_link_type Check if the union tag is ``unsupported_link_type``.
Class Variable other Undocumented
Class Variable shared_link_access_denied Undocumented
Class Variable shared_link_not_found Undocumented
Class Variable unsupported_link_type 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_shared_link_access_denied(self): (source)

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

def is_shared_link_not_found(self): (source)

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

def is_unsupported_link_type(self): (source)

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

Undocumented

shared_link_access_denied = (source)

Undocumented

shared_link_not_found = (source)

Undocumented

unsupported_link_type = (source)

Undocumented

def _process_custom_annotations(self, annotation_type, field_path, processor): (source)
_catch_all: str = (source)

Undocumented