AddFolderMemberError
public enum AddFolderMemberError : CustomStringConvertible, JSONRepresentable
The AddFolderMemberError union
-
Unable to access shared folder.
Declaration
Swift
case accessError(Sharing.SharedFolderAccessError) -
This user’s email address is not verified. This functionality is only available on accounts with a verified email address. Users can verify their email address here https://www.dropbox.com/help/317.
Declaration
Swift
case emailUnverified -
The current user has been banned.
Declaration
Swift
case bannedMember -
members in AddFolderMemberArg contains a bad invitation recipient.
Declaration
Swift
case badMember(Sharing.AddMemberSelectorError) -
Your team policy does not allow sharing outside of the team.
Declaration
Swift
case cantShareOutsideTeam -
The value is the member limit that was reached.
Declaration
Swift
case tooManyMembers(UInt64) -
The value is the pending invite limit that was reached.
Declaration
Swift
case tooManyPendingInvites(UInt64) -
The current user has hit the limit of invites they can send per day. Try again in 24 hours.
Declaration
Swift
case rateLimit -
The current user is trying to share with too many people at once.
Declaration
Swift
case tooManyInvitees -
The current user’s account doesn’t support this action. An example of this is when adding a read-only member. This action can only be performed by users that have upgraded to a Pro or Business plan.
Declaration
Swift
case insufficientPlan -
This action cannot be performed on a team shared folder.
Declaration
Swift
case teamFolder -
The current user does not have permission to perform this action.
Declaration
Swift
case noPermission -
Invalid shared folder error will be returned as an access_error.
Declaration
Swift
case invalidSharedFolder -
An unspecified error.
Declaration
Swift
case other -
Declaration
Swift
public var description: String { get }
View on GitHub
AddFolderMemberError Enumeration Reference