DBSHARINGResolvedVisibilityTag

Objective-C

enum DBSHARINGResolvedVisibilityTag : NSInteger {}

Swift

@frozen enum DBSHARINGResolvedVisibilityTag : Int, @unchecked Sendable

The DBSHARINGResolvedVisibilityTag enum type represents the possible tag states with which the DBSHARINGResolvedVisibility union can exist.

  • Anyone who has received the link can access it. No login required.

    Declaration

    Objective-C

    DBSHARINGResolvedVisibilityPublic

    Swift

    case `public` = 0
  • Only members of the same team can access the link. Login is required.

    Declaration

    Objective-C

    DBSHARINGResolvedVisibilityTeamOnly

    Swift

    case teamOnly = 1
  • A link-specific password is required to access the link. Login is not required.

    Declaration

    Objective-C

    DBSHARINGResolvedVisibilityPassword

    Swift

    case password = 2
  • Only members of the same team who have the link-specific password can access the link. Login is required.

    Declaration

    Objective-C

    DBSHARINGResolvedVisibilityTeamAndPassword

    Swift

    case teamAndPassword = 3
  • Only members of the shared folder containing the linked file can access the link. Login is required.

    Declaration

    Objective-C

    DBSHARINGResolvedVisibilitySharedFolderOnly

    Swift

    case sharedFolderOnly = 4
  • The link merely points the user to the content, and does not grant any additional rights. Existing members of the content who use this link can only access the content with their pre-existing access rights. Either on the file directly, or inherited from a parent folder.

    Declaration

    Objective-C

    DBSHARINGResolvedVisibilityNoOne

    Swift

    case noOne = 5
  • Only the current user can view this link.

    Declaration

    Objective-C

    DBSHARINGResolvedVisibilityOnlyYou

    Swift

    case onlyYou = 6
  • (no description).

    Declaration

    Objective-C

    DBSHARINGResolvedVisibilityOther

    Swift

    case other = 7