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 team.MembersTransferFilesError.removed_and_transfer_dest_should_differ: Expected removed user and transfer_dest user to be different. :ivar team.MembersTransferFilesError.removed_and_transfer_admin_should_differ: Expected removed user and transfer_admin user to be different. :ivar team.MembersTransferFilesError.transfer_dest_user_not_found: No matching user found for the argument transfer_dest_id. :ivar team.MembersTransferFilesError.transfer_dest_user_not_in_team: The provided transfer_dest_id does not exist on this team. :ivar team.MembersTransferFilesError.transfer_admin_user_not_in_team: The provided transfer_admin_id does not exist on this team. :ivar team.MembersTransferFilesError.transfer_admin_user_not_found: No matching user found for the argument transfer_admin_id. :ivar team.MembersTransferFilesError.unspecified_transfer_admin_id: The transfer_admin_id argument must be provided when file transfer is requested. :ivar team.MembersTransferFilesError.transfer_admin_is_not_admin: Specified transfer_admin user is not a team admin. :ivar team.MembersTransferFilesError.recipient_not_verified: The recipient user's email is not verified.

Method is_recipient_not_verified Check if the union tag is ``recipient_not_verified``.
Method is_removed_and_transfer_admin_should_differ Check if the union tag is ``removed_and_transfer_admin_should_differ``.
Method is_removed_and_transfer_dest_should_differ Check if the union tag is ``removed_and_transfer_dest_should_differ``.
Method is_transfer_admin_is_not_admin Check if the union tag is ``transfer_admin_is_not_admin``.
Method is_transfer_admin_user_not_found Check if the union tag is ``transfer_admin_user_not_found``.
Method is_transfer_admin_user_not_in_team Check if the union tag is ``transfer_admin_user_not_in_team``.
Method is_transfer_dest_user_not_found Check if the union tag is ``transfer_dest_user_not_found``.
Method is_transfer_dest_user_not_in_team Check if the union tag is ``transfer_dest_user_not_in_team``.
Method is_unspecified_transfer_admin_id Check if the union tag is ``unspecified_transfer_admin_id``.
Class Variable recipient_not_verified Undocumented
Class Variable removed_and_transfer_admin_should_differ Undocumented
Class Variable removed_and_transfer_dest_should_differ Undocumented
Class Variable transfer_admin_is_not_admin Undocumented
Class Variable transfer_admin_user_not_found Undocumented
Class Variable transfer_admin_user_not_in_team Undocumented
Class Variable transfer_dest_user_not_found Undocumented
Class Variable transfer_dest_user_not_in_team Undocumented
Class Variable unspecified_transfer_admin_id Undocumented
Method _process_custom_annotations Undocumented

Inherited from MembersDeactivateError:

Method is_other Check if the union tag is ``other``.
Method is_user_not_in_team Check if the union tag is ``user_not_in_team``.
Class Variable other Undocumented
Class Variable user_not_in_team Undocumented
Class Variable _catch_all Undocumented

Inherited from UserSelectorError (via MembersDeactivateError):

Method is_user_not_found Check if the union tag is ``user_not_found``.
Class Variable user_not_found Undocumented
def is_recipient_not_verified(self): (source)

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

def is_removed_and_transfer_admin_should_differ(self): (source)

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

def is_removed_and_transfer_dest_should_differ(self): (source)

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

def is_transfer_admin_is_not_admin(self): (source)

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

def is_transfer_admin_user_not_found(self): (source)

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

def is_transfer_admin_user_not_in_team(self): (source)

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

def is_transfer_dest_user_not_found(self): (source)

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

def is_transfer_dest_user_not_in_team(self): (source)

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

def is_unspecified_transfer_admin_id(self): (source)

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

recipient_not_verified = (source)

Undocumented

removed_and_transfer_admin_should_differ = (source)

Undocumented

removed_and_transfer_dest_should_differ = (source)

Undocumented

transfer_admin_is_not_admin = (source)

Undocumented

transfer_admin_user_not_found = (source)

Undocumented

transfer_admin_user_not_in_team = (source)

Undocumented

transfer_dest_user_not_found = (source)

Undocumented

transfer_dest_user_not_in_team = (source)

Undocumented

unspecified_transfer_admin_id = (source)

Undocumented

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