Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.35 KB

File metadata and controls

34 lines (25 loc) · 1.35 KB

CreateOrderRequest

Properties

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]

Example

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)

[Back to Model list] [Back to API list] [Back to README]