InPlayerAccount

public struct InPlayerAccount : Codable

Account Model

  • Refers to whether the customer account registration has been completed

    Declaration

    Swift

    public let completed: Bool?
  • Account’s email address

    Declaration

    Swift

    public let email: String?
  • Account’s first and last name

    Declaration

    Swift

    public let fullName: String?
  • Account’s username

    Declaration

    Swift

    public let username: String?
  • id

    Unique account ID

    Declaration

    Swift

    public let id: Int?
  • The request’s source URL

    Declaration

    Swift

    public let referrer: String?
  • Account’s roles

    Declaration

    Swift

    public let roles: [AccountType]?
  • Time at which the account was created, measured in seconds since 1 January 1970 (UTC)

    Declaration

    Swift

    public let createdAt: Double?
  • Time at which the account was updated, measured in seconds since 1 January 1970 (UTC)

    Declaration

    Swift

    public let updatedAt: Double?
  • Undocumented

    Declaration

    Swift

    public let uuid: String?
  • Undocumented

    Declaration

    Swift

    public let merchantId: Int?
  • Undocumented

    Declaration

    Swift

    public let merchantUUID: String?
  • Additional information about the account that can be attached to the account object

    Declaration

    Swift

    public let metadata: [String : String]?
  • Decoder method

    Declaration

    Swift

    public init(from decoder: Decoder) throws