Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.09 KB

ToExchangeTransaction.md

File metadata and controls

32 lines (23 loc) · 1.09 KB

ToExchangeTransaction

Properties

Name Type Description Notes
asset_id str [optional]
amount str [optional]
dst_address str [optional]
dst_tag str optional [optional]

Example

from fireblocks.models.to_exchange_transaction import ToExchangeTransaction

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

# convert the object into a dict
to_exchange_transaction_dict = to_exchange_transaction_instance.to_dict()
# create an instance of ToExchangeTransaction from a dict
to_exchange_transaction_from_dict = ToExchangeTransaction.from_dict(to_exchange_transaction_dict)

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