PlaceOrderResponse

data class PlaceOrderResponse(orderType: OrderType, orderIds: List<OrderId>, orders: List<OrderDetail>, dstFlag: Boolean, placedTime: Instant, accountId: String, marginLevel: MarginLevel?, optionLevel: OptionLevel?)

Parameters

orderType

The type of order being placed

orderId

ID number assigned to this order

orders

List of orders

dstFlag

Indicator flag identifying whether daylight savings time is applicable or not

placedTime

The time the order was placed

accountId

The numeric account ID

marginLevel

The code that designates the applicable margin level

optionLevel

The code that designates the applicable options level

Constructors

PlaceOrderResponse
Link copied to clipboard
fun PlaceOrderResponse(orderType: OrderType, orderIds: List<OrderId>, orders: List<OrderDetail>, dstFlag: Boolean, placedTime: Instant, accountId: String, marginLevel: MarginLevel?, optionLevel: OptionLevel?)
The type of order being placed

Properties

accountId
Link copied to clipboard
val accountId: String
The numeric account ID
dstFlag
Link copied to clipboard
val dstFlag: Boolean
Indicator flag identifying whether daylight savings time is applicable or not
marginLevel
Link copied to clipboard
val marginLevel: MarginLevel?
The code that designates the applicable margin level
optionLevel
Link copied to clipboard
val optionLevel: OptionLevel?
The code that designates the applicable options level
orderId
Link copied to clipboard
val orderId: Long
orderIds
Link copied to clipboard
val orderIds: List<OrderId>
orders
Link copied to clipboard
val orders: List<OrderDetail>
List of orders
orderType
Link copied to clipboard
val orderType: OrderType
The type of order being placed
placedTime
Link copied to clipboard
val placedTime: Instant
The time the order was placed

Sources

jvm source
Link copied to clipboard