DBSHARINGSharedLinkPolicyTag

Objective-C

enum DBSHARINGSharedLinkPolicyTag : NSInteger {}

Swift

@frozen enum DBSHARINGSharedLinkPolicyTag : Int, @unchecked Sendable

The DBSHARINGSharedLinkPolicyTag enum type represents the possible tag states with which the DBSHARINGSharedLinkPolicy union can exist.

  • Links can be shared with anyone.

    Declaration

    Objective-C

    DBSHARINGSharedLinkPolicyAnyone

    Swift

    case anyone = 0
  • Links can be shared with anyone on the same team as the owner.

    Declaration

    Objective-C

    DBSHARINGSharedLinkPolicyTeam

    Swift

    case team = 1
  • Links can only be shared among members of the shared folder.

    Declaration

    Objective-C

    DBSHARINGSharedLinkPolicyMembers

    Swift

    case members = 2
  • (no description).

    Declaration

    Objective-C

    DBSHARINGSharedLinkPolicyOther

    Swift

    case other = 3