Enumeration
Member.AccountType
public enum AccountType: Decodable, Equatable
The type of account the membership represents.
Relationships
Member Of
MemberA
Memberassigns a specific role to an account within a project or an organization. The account can be either a user or a service account.
Conforms To
DecodableEquatable
Initializers
init(from:)
public init(from decoder: Decoder) throws
Enumeration Cases
serviceAccount
case serviceAccount
Indicates that the account linked to the Member is a Service Account.
unknown
case unknown(value: String)
The account type received for the member was unknown. Added for backwards compatibility in case a new status is added on the backend, and not yet added to this client library.