AccountBalance

data class AccountBalance(accountId: String?, asOfDate: Int?, dayTraderStatus: String?, accountMode: AccountMode?, accountType: AccountType?, institutionType: InstitutionType?, optionLevel: OptionLevel, quoteModeRaw: Int, description: String?, cash: AccountCash, balances: ComputedBalance)

Parameters

accountId

The account ID for which the balance is requested

asOfDate

The effective date in UTC

dayTraderStatus

The user's status as a day trader

accountMode

The account mode indicating the account's special privileges as a cash account, a margin account, and so on

accountType

The registered account type

institutionType

The account institution type for which the balance or information is requested

optionLevel

The option approval level of the account, expressed as a level 1 through 4 value

quoteModeRaw

The quote type indicator

description

The description of the account

cash

Designates that account is a cash account

balances

Designates the computed balance of the account

Constructors

AccountBalance
Link copied to clipboard
fun AccountBalance(accountId: String?, asOfDate: Int?, dayTraderStatus: String?, accountMode: AccountMode?, accountType: AccountType?, institutionType: InstitutionType?, optionLevel: OptionLevel, quoteModeRaw: Int, description: String?, cash: AccountCash, balances: ComputedBalance)
The account ID for which the balance is requested

Properties

accountId
Link copied to clipboard
val accountId: String?
The account ID for which the balance is requested
accountMode
Link copied to clipboard
val accountMode: AccountMode?
The account mode indicating the account's special privileges as a cash account, a margin account, and so on
accountType
Link copied to clipboard
val accountType: AccountType?
The registered account type
asOfDate
Link copied to clipboard
val asOfDate: Int?
The effective date in UTC
balances
Link copied to clipboard
val balances: ComputedBalance
Designates the computed balance of the account
cash
Link copied to clipboard
val cash: AccountCash
Designates that account is a cash account
dayTraderStatus
Link copied to clipboard
val dayTraderStatus: String?
The user's status as a day trader
description
Link copied to clipboard
val description: String?
The description of the account
institutionType
Link copied to clipboard
val institutionType: InstitutionType?
The account institution type for which the balance or information is requested
optionLevel
Link copied to clipboard
val optionLevel: OptionLevel
The option approval level of the account, expressed as a level 1 through 4 value
quoteModeRaw
Link copied to clipboard
val quoteModeRaw: Int
The quote type indicator
quoteStatus
Link copied to clipboard
val quoteStatus: QuoteMode

Sources

jvm source
Link copied to clipboard