OrdersResponse

data class OrdersResponse(marker: String?, next: String?, orders: List<Order>?, messages: MessagesResponse?)

Wraps response for an Order

Parameters

marker

Specifies the desired starting point of the set of items to return. Used for paging as described in the Notes below.

next

The next order

orders

The order response

messages

The messages associated with the order

Constructors

OrdersResponse
Link copied to clipboard
fun OrdersResponse(marker: String?, next: String?, orders: List<Order>?, messages: MessagesResponse?)
Specifies the desired starting point of the set of items to return.

Properties

marker
Link copied to clipboard
val marker: String?
Specifies the desired starting point of the set of items to return.
messages
Link copied to clipboard
val messages: MessagesResponse?
The messages associated with the order
next
Link copied to clipboard
val next: String?
The next order
orders
Link copied to clipboard
val orders: List<Order>?
The order response

Sources

jvm source
Link copied to clipboard