Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.22 KB

File metadata and controls

34 lines (25 loc) · 1.22 KB

OrderExecutionStep

Properties

Name Type Description Notes
type ExecutionStepType
status ExecutionStepStatusEnum
fee Fee [optional]
tx_id str [optional]
tx_hash str [optional]
error ExecutionStepError [optional]

Example

from fireblocks.models.order_execution_step import OrderExecutionStep

# TODO update the JSON string below
json = "{}"
# create an instance of OrderExecutionStep from a JSON string
order_execution_step_instance = OrderExecutionStep.from_json(json)
# print the JSON string representation of the object
print(OrderExecutionStep.to_json())

# convert the object into a dict
order_execution_step_dict = order_execution_step_instance.to_dict()
# create an instance of OrderExecutionStep from a dict
order_execution_step_from_dict = OrderExecutionStep.from_dict(order_execution_step_dict)

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