class documentation

class MembersTransferFormerMembersFilesError(MembersTransferFilesError): (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 team.MembersTransferFormerMembersFilesError.user_data_is_being_transferred: The user's data is being transferred. Please wait some time before retrying. :ivar team.MembersTransferFormerMembersFilesError.user_not_removed: No matching removed user found for the argument user. :ivar team.MembersTransferFormerMembersFilesError.user_data_cannot_be_transferred: User files aren't transferable anymore. :ivar team.MembersTransferFormerMembersFilesError.user_data_already_transferred: User's data has already been transferred to another user.

Method is_user_data_already_transferred Check if the union tag is ``user_data_already_transferred``.
Method is_user_data_cannot_be_transferred Check if the union tag is ``user_data_cannot_be_transferred``.
Method is_user_data_is_being_transferred Check if the union tag is ``user_data_is_being_transferred``.
Method is_user_not_removed Check if the union tag is ``user_not_removed``.
Class Variable user_data_already_transferred Undocumented
Class Variable user_data_cannot_be_transferred Undocumented
Class Variable user_data_is_being_transferred Undocumented
Class Variable user_not_removed Undocumented
Method _process_custom_annotations Undocumented

Inherited from MembersTransferFilesError:

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

Inherited from MembersDeactivateError (via MembersTransferFilesError):

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 MembersTransferFilesError, MembersDeactivateError):

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

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

def is_user_data_cannot_be_transferred(self): (source)

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

def is_user_data_is_being_transferred(self): (source)

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

def is_user_not_removed(self): (source)

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

user_data_already_transferred = (source)

Undocumented

user_data_cannot_be_transferred = (source)

Undocumented

user_data_is_being_transferred = (source)

Undocumented

user_not_removed = (source)

Undocumented

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