Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.24 KB

TransferOperationPreview.md

File metadata and controls

31 lines (22 loc) · 1.24 KB

TransferOperationPreview

Properties

Name Type Description Notes
input TransferOperationConfigParams
output TransferOperationPreviewOutput [optional]
failure TransferOperationFailure [optional]

Example

from fireblocks.models.transfer_operation_preview import TransferOperationPreview

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

# convert the object into a dict
transfer_operation_preview_dict = transfer_operation_preview_instance.to_dict()
# create an instance of TransferOperationPreview from a dict
transfer_operation_preview_from_dict = TransferOperationPreview.from_dict(transfer_operation_preview_dict)

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