AccountPortfolio

data class AccountPortfolio(accountId: String, next: String?, totalPages: Int?, nextPageNo: String?, positions: List<PortfolioPosition>)

Parameters

accountId

Numeric account ID

next

The next account portfolio item

totalPages

The total number of pages

nextPageNo

The next page number

positions

The positions in this portfolio

Constructors

AccountPortfolio
Link copied to clipboard
fun AccountPortfolio(accountId: String, next: String?, totalPages: Int?, nextPageNo: String?, positions: List<PortfolioPosition>)
Numeric account ID

Properties

accountId
Link copied to clipboard
val accountId: String
Numeric account ID
next
Link copied to clipboard
val next: String?
The next account portfolio item
nextPageNo
Link copied to clipboard
val nextPageNo: String?
The next page number
positions
Link copied to clipboard
val positions: List<PortfolioPosition>
The positions in this portfolio
totalPages
Link copied to clipboard
val totalPages: Int?
The total number of pages

Sources

jvm source
Link copied to clipboard