| Name | Type | Description | Notes |
|---|---|---|---|
| via | AccessType | ||
| execution_request_details | ExecutionRequestDetails | ||
| settlement | Settlement | ||
| participants_identification | ParticipantsIdentification | [optional] | |
| customer_internal_reference_id | str | Internal reference ID for the customer | [optional] |
| note | str | Optional note for the order | [optional] |
from fireblocks.models.create_order_request import CreateOrderRequest
# TODO update the JSON string below
json = "{}"
# create an instance of CreateOrderRequest from a JSON string
create_order_request_instance = CreateOrderRequest.from_json(json)
# print the JSON string representation of the object
print(CreateOrderRequest.to_json())
# convert the object into a dict
create_order_request_dict = create_order_request_instance.to_dict()
# create an instance of CreateOrderRequest from a dict
create_order_request_from_dict = CreateOrderRequest.from_dict(create_order_request_dict)