Orders Response
data class OrdersResponse(marker: String?, next: String?, orders: List<Order>?, messages: MessagesResponse?)
Content copied to clipboard
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?)
Content copied to clipboard
Specifies the desired starting point of the set of items to return.
Properties
Sources
jvm source
Link copied to clipboard