DBTEAMLegalHoldsPolicyCreateErrorTag
Objective-C
enum DBTEAMLegalHoldsPolicyCreateErrorTag : NSInteger {}
Swift
@frozen enum DBTEAMLegalHoldsPolicyCreateErrorTag : Int, @unchecked Sendable
The DBTEAMLegalHoldsPolicyCreateErrorTag
enum type represents the possible
tag states with which the DBTEAMLegalHoldsPolicyCreateError
union can
exist.
-
There has been an unknown legal hold error.
Declaration
Objective-C
DBTEAMLegalHoldsPolicyCreateErrorUnknownLegalHoldError
Swift
case unknownLegalHoldError = 0
-
You don’t have permissions to perform this action.
Declaration
Objective-C
DBTEAMLegalHoldsPolicyCreateErrorInsufficientPermissions
Swift
case insufficientPermissions = 1
-
(no description).
Declaration
Objective-C
DBTEAMLegalHoldsPolicyCreateErrorOther
Swift
case other = 2
-
Start date must be earlier than end date.
Declaration
Objective-C
DBTEAMLegalHoldsPolicyCreateErrorStartDateIsLaterThanEndDate
Swift
case startDateIsLaterThanEndDate = 3
-
The users list must have at least one user.
Declaration
Objective-C
DBTEAMLegalHoldsPolicyCreateErrorEmptyMembersList
Swift
case emptyMembersList = 4
-
Some members in the members list are not valid to be placed under legal hold.
Declaration
Objective-C
DBTEAMLegalHoldsPolicyCreateErrorInvalidMembers
Swift
case invalidMembers = 5
-
You cannot add more than 5 users in a legal hold.
Declaration
Objective-C
DBTEAMLegalHoldsPolicyCreateErrorNumberOfUsersOnHoldIsGreaterThanHoldLimitation
Swift
case numberOfUsersOnHoldIsGreaterThanHoldLimitation = 6
-
Temporary infrastructure failure, please retry.
Declaration
Objective-C
DBTEAMLegalHoldsPolicyCreateErrorTransientError
Swift
case transientError = 7
-
The name provided is already in use by another legal hold.
Declaration
Objective-C
DBTEAMLegalHoldsPolicyCreateErrorNameMustBeUnique
Swift
case nameMustBeUnique = 8
-
Team exceeded legal hold quota.
Declaration
Objective-C
DBTEAMLegalHoldsPolicyCreateErrorTeamExceededLegalHoldQuota
Swift
case teamExceededLegalHoldQuota = 9
-
The provided date is invalid.
Declaration
Objective-C
DBTEAMLegalHoldsPolicyCreateErrorInvalidDate
Swift
case invalidDate = 10