SharedLinkAccessFailureReason

public enum SharedLinkAccessFailureReason : CustomStringConvertible, JSONRepresentable

The SharedLinkAccessFailureReason union

  • User is not logged in.

    Declaration

    Swift

    case loginRequired
  • 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 emailVerifyRequired
  • The link is password protected.

    Declaration

    Swift

    case passwordRequired
  • Access is allowed for team members only.

    Declaration

    Swift

    case teamOnly
  • Access is allowed for the shared link’s owner only.

    Declaration

    Swift

    case ownerOnly
  • An unspecified error.

    Declaration

    Swift

    case other
  • Declaration

    Swift

    public var description: String { get }