SpaceAllocation
public enum SpaceAllocation : CustomStringConvertible, JSONRepresentable
Space is allocated differently based on the type of account.
-
The user’s space allocation applies only to their individual account.
Declaration
Swift
case individual(Users.IndividualSpaceAllocation)
-
The user shares space with other members of their team.
Declaration
Swift
case team(Users.TeamSpaceAllocation)
-
An unspecified error.
Declaration
Swift
case other
-
Declaration
Swift
public var description: String { get }