class documentation

class SharedFolderAccessError(bb.Union): (source)

View In Hierarchy

There is an error accessing the shared folder. 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.SharedFolderAccessError.invalid_id: This shared folder ID is invalid. :ivar sharing.SharedFolderAccessError.not_a_member: The user is not a member of the shared folder thus cannot access it. :ivar sharing.SharedFolderAccessError.email_unverified: Never set. :ivar sharing.SharedFolderAccessError.unmounted: The shared folder is unmounted.

Method is_email_unverified Check if the union tag is ``email_unverified``.
Method is_invalid_id Check if the union tag is ``invalid_id``.
Method is_not_a_member Check if the union tag is ``not_a_member``.
Method is_other Check if the union tag is ``other``.
Method is_unmounted Check if the union tag is ``unmounted``.
Class Variable email_unverified Undocumented
Class Variable invalid_id Undocumented
Class Variable not_a_member Undocumented
Class Variable other Undocumented
Class Variable unmounted Undocumented
Method _process_custom_annotations Undocumented
Class Variable _catch_all Undocumented
def is_email_unverified(self): (source)

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

def is_invalid_id(self): (source)

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

def is_not_a_member(self): (source)

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

def is_other(self): (source)

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

def is_unmounted(self): (source)

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

email_unverified = (source)

Undocumented

invalid_id = (source)

Undocumented

not_a_member = (source)

Undocumented

Undocumented

unmounted = (source)

Undocumented

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

Undocumented

_catch_all: str = (source)

Undocumented