Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.22 KB

TransferOperationConfigParams.md

File metadata and controls

32 lines (23 loc) · 1.22 KB

TransferOperationConfigParams

Properties

Name Type Description Notes
amount str [optional]
asset_id str [optional]
source Account [optional]
destination Destination

Example

from fireblocks.models.transfer_operation_config_params import TransferOperationConfigParams

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

# convert the object into a dict
transfer_operation_config_params_dict = transfer_operation_config_params_instance.to_dict()
# create an instance of TransferOperationConfigParams from a dict
transfer_operation_config_params_from_dict = TransferOperationConfigParams.from_dict(transfer_operation_config_params_dict)

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