AccountingData
public struct AccountingData : Codable
Data on the account
-
Email address associated with this account
Declaration
Swift
public var email: String -
If this account is an automatically generated account
Declaration
Swift
public var isAutoAccount: Bool -
Bytes allowed per month for this account. -1 for unlimited.
Declaration
Swift
public var bytesAvailable: Int64 -
Bytes used this month for this account.
Declaration
Swift
public var bytesUsed: Int64 -
If this user is a teams member. @since 7.4
Declaration
Swift
public var isTeam: Bool -
Current minutes available on the account. -1 is unlimited @since 7.4
Declaration
Swift
public var minutesAvail: Int -
Current minutes used on the account. @since 7.4
Declaration
Swift
public var minutesUsed: Int -
Current users paytier @since 7.4
Declaration
Swift
public var payTier: Int -
Current user paying status @since 7.4
Declaration
Swift
public var isPaying: Bool -
Current end date for a users account @since 7.4
Declaration
Swift
public var periodEndDate: String -
Declaration
Swift
public var userId: Int -
If any actions should be taken on this account.
- @since 14.9.1
Declaration
Swift
public var action: AccountAction