TransactionTrade

data class TransactionTrade(quantity: Float?, price: Float?, settlementCurrency: String?, paymentCurrency: String?, fee: Float?, displaySymbol: String?, settlementDate: Instant?, product: Product)

Parameters

quantity

Item count; for example, share count

price

Price per item if applicable; for example, price per share

settlementCurrency

Settlement currency

paymentCurrency

Payment currency

fee

The brokerage fee

displaySymbol

Display symbol of the security

settlementDate

Settlement date of the transaction

Constructors

TransactionTrade
Link copied to clipboard
fun TransactionTrade(quantity: Float?, price: Float?, settlementCurrency: String?, paymentCurrency: String?, fee: Float?, displaySymbol: String?, settlementDate: Instant?, product: Product)
Item count; for example, share count

Properties

displaySymbol
Link copied to clipboard
val displaySymbol: String?
Display symbol of the security
fee
Link copied to clipboard
val fee: Float?
The brokerage fee
paymentCurrency
Link copied to clipboard
val paymentCurrency: String?
Payment currency
price
Link copied to clipboard
val price: Float?
Price per item if applicable; for example, price per share
product
Link copied to clipboard
val product: Product
quantity
Link copied to clipboard
val quantity: Float?
Item count; for example, share count
settlementCurrency
Link copied to clipboard
val settlementCurrency: String?
Settlement currency
settlementDate
Link copied to clipboard
val settlementDate: Instant?
Settlement date of the transaction

Sources

jvm source
Link copied to clipboard