QuoteData

data class QuoteData(dateTime: GregorianCalendar, quoteStatus: QuoteStatus, ahFlag: Boolean, product: Product, tickerData: TickerData)

Parameters

dateTime

The date and time of the quote

quoteStatus

The status of the quote

ahFlag

Indicates whether the quote details are being displayed after hours or not

symbol

Ticker symbol

tickerData

The quote details to be displayed. This field depends on the detailFlag input parameter. For example, if detailFlag is ALL, AllQuoteDetails are displayed. If detailFlag is MF_DETAIL, the MutualFund structure gets displayed.

Constructors

QuoteData
Link copied to clipboard
fun QuoteData(dateTime: GregorianCalendar, quoteStatus: QuoteStatus, ahFlag: Boolean, product: Product, tickerData: TickerData)
The date and time of the quote

Properties

ahFlag
Link copied to clipboard
val ahFlag: Boolean
Indicates whether the quote details are being displayed after hours or not
dateTime
Link copied to clipboard
val dateTime: GregorianCalendar
The date and time of the quote
product
Link copied to clipboard
val product: Product
quoteStatus
Link copied to clipboard
val quoteStatus: QuoteStatus
The status of the quote
symbol
Link copied to clipboard
val symbol: String?
tickerData
Link copied to clipboard
val tickerData: TickerData
The quote details to be displayed.

Sources

jvm source
Link copied to clipboard