| Name | Type | Description |
|---|---|---|
| last | BigDecimal | The price of the last trade |
| lastSize | Integer | The size of the last trade |
| lastTimestamp | OffsetDateTime | The time of the last trade |
| volume | Integer | The cumulative volume of this options contract that traded that day. |
| ask | BigDecimal | The price of the top ask order |
| askSize | Integer | The size of the top ask order |
| askTimestamp | OffsetDateTime | The timestamp of the top ask order |
| bid | BigDecimal | The price of the top bid order |
| bidSize | Integer | The size of the top bid order |
| bidTimestamp | OffsetDateTime | The time of the top bid order |
| openInterest | Integer | The total number of this options contract that are still open. |
| exerciseStyle | ExerciseStyleEnum | The exercise style of the option. ("A" = "American", "E" = "European") |
| Name | Value |
|---|---|
| A | "A" |
| E | "E" |