Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.17 KB

TransferOperationExecutionOutput.md

File metadata and controls

30 lines (21 loc) · 1.17 KB

TransferOperationExecutionOutput

Properties

Name Type Description Notes
amount AssetAmount
fee AssetAmount

Example

from fireblocks.models.transfer_operation_execution_output import TransferOperationExecutionOutput

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

# convert the object into a dict
transfer_operation_execution_output_dict = transfer_operation_execution_output_instance.to_dict()
# create an instance of TransferOperationExecutionOutput from a dict
transfer_operation_execution_output_from_dict = TransferOperationExecutionOutput.from_dict(transfer_operation_execution_output_dict)

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