DBTEAMPOLICIESSharedLinkCreatePolicyTag

Objective-C

enum DBTEAMPOLICIESSharedLinkCreatePolicyTag : NSInteger {}

Swift

@frozen enum DBTEAMPOLICIESSharedLinkCreatePolicyTag : Int, @unchecked Sendable

The DBTEAMPOLICIESSharedLinkCreatePolicyTag enum type represents the possible tag states with which the DBTEAMPOLICIESSharedLinkCreatePolicy union can exist.

  • By default, anyone can access newly created shared links. No login will be required to access the shared links unless overridden.

    Declaration

    Objective-C

    DBTEAMPOLICIESSharedLinkCreatePolicyDefaultPublic

    Swift

    case defaultPublic = 0
  • By default, only members of the same team can access newly created shared links. Login will be required to access the shared links unless overridden.

    Declaration

    Objective-C

    DBTEAMPOLICIESSharedLinkCreatePolicyDefaultTeamOnly

    Swift

    case defaultTeamOnly = 1
  • Only members of the same team can access all shared links. Login will be required to access all shared links.

    Declaration

    Objective-C

    DBTEAMPOLICIESSharedLinkCreatePolicyTeamOnly

    Swift

    case teamOnly = 2
  • Only people invited can access newly created links. Login will be required to access the shared links unless overridden.

    Declaration

    Objective-C

    DBTEAMPOLICIESSharedLinkCreatePolicyDefaultNoOne

    Swift

    case defaultNoOne = 3
  • (no description).

    Declaration

    Objective-C

    DBTEAMPOLICIESSharedLinkCreatePolicyOther

    Swift

    case other = 4