class documentation

class RelinquishFileMembershipError(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 sharing.RelinquishFileMembershipError.group_access: The current user has access to the shared file via a group. You can't relinquish membership to a file shared via groups. :ivar sharing.RelinquishFileMembershipError.no_permission: The current user does not have permission to perform this action.

Class Method access_error Create an instance of this class set to the ``access_error`` tag with value ``val``.
Method get_access_error Only call this if :meth:`is_access_error` is true.
Method is_access_error Check if the union tag is ``access_error``.
Method is_group_access Check if the union tag is ``group_access``.
Method is_no_permission Check if the union tag is ``no_permission``.
Method is_other Check if the union tag is ``other``.
Class Variable group_access Undocumented
Class Variable no_permission Undocumented
Class Variable other Undocumented
Method _process_custom_annotations Undocumented
Class Variable _catch_all Undocumented
@classmethod
def access_error(cls, val): (source)

Create an instance of this class set to the ``access_error`` tag with value ``val``. :param SharingFileAccessError val: :rtype: RelinquishFileMembershipError

def get_access_error(self): (source)

Only call this if :meth:`is_access_error` is true. :rtype: SharingFileAccessError

def is_access_error(self): (source)

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

def is_group_access(self): (source)

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

def is_no_permission(self): (source)

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

def is_other(self): (source)

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

group_access = (source)

Undocumented

no_permission = (source)

Undocumented

Undocumented

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

Undocumented

_catch_all: str = (source)

Undocumented