Name | Type | Description | Notes |
---|---|---|---|
input | TransferOperationConfigParams | ||
output | TransferOperationPreviewOutput | [optional] | |
failure | TransferOperationFailure | [optional] |
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)