TeamSpaceAllocation

public class TeamSpaceAllocation : CustomStringConvertible, JSONRepresentable

The TeamSpaceAllocation struct

  • The total space currently used by the user’s team (bytes).

    Declaration

    Swift

    public let used: UInt64
  • The total space allocated to the user’s team (bytes).

    Declaration

    Swift

    public let allocated: UInt64
  • The total space allocated to the user within its team allocated space (0 means that no restriction is imposed on the user’s quota within its team).

    Declaration

    Swift

    public let userWithinTeamSpaceAllocated: UInt64
  • The type of the space limit imposed on the team member (off, alert_only, stop_sync).

    Declaration

    Swift

    public let userWithinTeamSpaceLimitType: TeamCommon.MemberSpaceLimitType
  • An accurate cached calculation of a team member’s total space usage (bytes).

    Declaration

    Swift

    public let userWithinTeamSpaceUsedCached: UInt64
  • Declaration

    Swift

    public var description: String { get }