Data object with result data
Name | Type | Description | Notes |
---|---|---|---|
id | str | Unique id of Smart Transfer ticket term | |
ticket_id | str | Unique id of Smart Transfer ticket | |
asset | str | Asset name | |
amount | str | Amount | |
dvp_src_dst_vault_id | str | Identifier of the source and destination vault for DVP execution | [optional] |
amount_usd | str | Amount USD | [optional] |
from_network_id | str | Identifier of the origination Network Profile | |
from_network_id_name | str | Source network name | |
to_network_id | str | Identifier of the destination Network Profile | |
to_network_id_name | str | Destination network name | |
tx_hash | str | Blockchain TX hash | |
fb_tx_id | str | Fireblocks transaction ID. It is set when the funding transaction is created. | |
tx_status | str | Ticket term transaction status | |
status | str | Ticket term status | |
created_at | datetime | Date and time when the term is created. | |
updated_at | datetime | Date and time of last term update. |
from fireblocks.models.smart_transfer_ticket_term import SmartTransferTicketTerm
# TODO update the JSON string below
json = "{}"
# create an instance of SmartTransferTicketTerm from a JSON string
smart_transfer_ticket_term_instance = SmartTransferTicketTerm.from_json(json)
# print the JSON string representation of the object
print(SmartTransferTicketTerm.to_json())
# convert the object into a dict
smart_transfer_ticket_term_dict = smart_transfer_ticket_term_instance.to_dict()
# create an instance of SmartTransferTicketTerm from a dict
smart_transfer_ticket_term_from_dict = SmartTransferTicketTerm.from_dict(smart_transfer_ticket_term_dict)