DBTEAMMembersTransferFilesErrorTag
Objective-C
enum DBTEAMMembersTransferFilesErrorTag : NSInteger {}
Swift
@frozen enum DBTEAMMembersTransferFilesErrorTag : Int, @unchecked Sendable
The DBTEAMMembersTransferFilesErrorTag
enum type represents the possible
tag states with which the DBTEAMMembersTransferFilesError
union can exist.
-
No matching user found. The provided team_member_id, email, or external_id does not exist on this team.
Declaration
Objective-C
DBTEAMMembersTransferFilesErrorUserNotFound
Swift
case userNotFound = 0
-
The user is not a member of the team.
Declaration
Objective-C
DBTEAMMembersTransferFilesErrorUserNotInTeam
Swift
case userNotInTeam = 1
-
(no description).
Declaration
Objective-C
DBTEAMMembersTransferFilesErrorOther
Swift
case other = 2
-
Expected removed user and transfer_dest user to be different.
Declaration
Objective-C
DBTEAMMembersTransferFilesErrorRemovedAndTransferDestShouldDiffer
Swift
case removedAndTransferDestShouldDiffer = 3
-
Expected removed user and transfer_admin user to be different.
Declaration
Objective-C
DBTEAMMembersTransferFilesErrorRemovedAndTransferAdminShouldDiffer
Swift
case removedAndTransferAdminShouldDiffer = 4
-
No matching user found for the argument transfer_dest_id.
Declaration
Objective-C
DBTEAMMembersTransferFilesErrorTransferDestUserNotFound
Swift
case transferDestUserNotFound = 5
-
The provided transfer_dest_id does not exist on this team.
Declaration
Objective-C
DBTEAMMembersTransferFilesErrorTransferDestUserNotInTeam
Swift
case transferDestUserNotInTeam = 6
-
The provided transfer_admin_id does not exist on this team.
Declaration
Objective-C
DBTEAMMembersTransferFilesErrorTransferAdminUserNotInTeam
Swift
case transferAdminUserNotInTeam = 7
-
No matching user found for the argument transfer_admin_id.
Declaration
Objective-C
DBTEAMMembersTransferFilesErrorTransferAdminUserNotFound
Swift
case transferAdminUserNotFound = 8
-
The transfer_admin_id argument must be provided when file transfer is requested.
Declaration
Objective-C
DBTEAMMembersTransferFilesErrorUnspecifiedTransferAdminId
Swift
case unspecifiedTransferAdminId = 9
-
Specified transfer_admin user is not a team admin.
Declaration
Objective-C
DBTEAMMembersTransferFilesErrorTransferAdminIsNotAdmin
Swift
case transferAdminIsNotAdmin = 10
-
The recipient user’s email is not verified.
Declaration
Objective-C
DBTEAMMembersTransferFilesErrorRecipientNotVerified
Swift
case recipientNotVerified = 11