Account

data class Account(accountId: String, accountIdKey: String, accountType: AccountType, institutionType: String?, closedDateRaw: Int, mode: AccountMode?, description: String?, name: String?, status: AccountStatus?)

Parameters

accountId

The user's account ID

accountIdKey

The unique account key

accountType

The account type

institutionType

The institution type of the account

closedDateRaw

The date when the account was closed

mode

The account mode, i.e. cash or margin

description

Description of account

name

The nickname for the account

status

The status of the account

Constructors

Account
Link copied to clipboard
fun Account(accountId: String, accountIdKey: String, accountType: AccountType, institutionType: String?, closedDateRaw: Int, mode: AccountMode?, description: String?, name: String?, status: AccountStatus?)
The user's account ID

Properties

accountId
Link copied to clipboard
val accountId: String
The user's account ID
accountIdKey
Link copied to clipboard
val accountIdKey: String
The unique account key
accountType
Link copied to clipboard
val accountType: AccountType
The account type
closed
Link copied to clipboard
val closed: Boolean
closedDateRaw
Link copied to clipboard
val closedDateRaw: Int
The date when the account was closed
dateClosed
Link copied to clipboard
val dateClosed: Instant?
description
Link copied to clipboard
val description: String?
Description of account
institutionType
Link copied to clipboard
val institutionType: String?
The institution type of the account
mode
Link copied to clipboard
val mode: AccountMode?
The account mode, i.e.
name
Link copied to clipboard
val name: String?
The nickname for the account
status
Link copied to clipboard
val status: AccountStatus?
The status of the account

Sources

jvm source
Link copied to clipboard