DBTEAMCOMMONMemberSpaceLimitTypeTag

Objective-C

enum DBTEAMCOMMONMemberSpaceLimitTypeTag : NSInteger {}

Swift

@frozen enum DBTEAMCOMMONMemberSpaceLimitTypeTag : Int, @unchecked Sendable

The DBTEAMCOMMONMemberSpaceLimitTypeTag enum type represents the possible tag states with which the DBTEAMCOMMONMemberSpaceLimitType union can exist.

  • The team member does not have imposed space limit.

    Declaration

    Objective-C

    DBTEAMCOMMONMemberSpaceLimitTypeOff

    Swift

    case off = 0
  • The team member has soft imposed space limit - the limit is used for display and for notifications.

    Declaration

    Objective-C

    DBTEAMCOMMONMemberSpaceLimitTypeAlertOnly

    Swift

    case alertOnly = 1
  • The team member has hard imposed space limit - Dropbox file sync will stop after the limit is reached.

    Declaration

    Objective-C

    DBTEAMCOMMONMemberSpaceLimitTypeStopSync

    Swift

    case stopSync = 2
  • (no description).

    Declaration

    Objective-C

    DBTEAMCOMMONMemberSpaceLimitTypeOther

    Swift

    case other = 3