Order

data class Order(orderId: Int, details: String?, orderType: OrderType?, totalOrderValue: Float?, totalCommission: Float?, orderDetail: List<OrderDetail>?, events: EventsResponse?)

Order

Parameters

orderId

ID number assigned to this order

details

The order details

orderType

EQ, OPTN, SPREADS, BUY_WRITES, BUTTERFLY, IRON_BUTTERFLY, CONDOR, IRON_CONDOR, MF, MMF

totalOrderValue

The total order value

totalCommission

The total commission

orderDetail

The order confirmation ID for the placed order

events

The events in the placed order

Constructors

Order
Link copied to clipboard
fun Order(orderId: Int, details: String?, orderType: OrderType?, totalOrderValue: Float?, totalCommission: Float?, orderDetail: List<OrderDetail>?, events: EventsResponse?)
ID number assigned to this order

Properties

details
Link copied to clipboard
val details: String?
The order details
events
Link copied to clipboard
val events: EventsResponse?
The events in the placed order
orderDetail
Link copied to clipboard
val orderDetail: List<OrderDetail>?
The order confirmation ID for the placed order
orderId
Link copied to clipboard
val orderId: Int
ID number assigned to this order
orderType
Link copied to clipboard
val orderType: OrderType?
EQ, OPTN, SPREADS, BUY_WRITES, BUTTERFLY, IRON_BUTTERFLY, CONDOR, IRON_CONDOR, MF, MMF
totalCommission
Link copied to clipboard
val totalCommission: Float?
The total commission
totalOrderValue
Link copied to clipboard
val totalOrderValue: Float?
The total order value

Sources

jvm source
Link copied to clipboard