Skip to content

Latest commit

 

History

History
49 lines (40 loc) · 2.58 KB

SmartTransferTicket.md

File metadata and controls

49 lines (40 loc) · 2.58 KB

SmartTransferTicket

Data object with result data

Properties

Name Type Description Notes
id str Unique id of Smart Transfer ticket
type str Kind of Smart Transfer. Can be either `ASYNC` or `DVP`
direction str Direction of Smart Transfer. [optional]
status str Current status of Smart Transfer ticket
terms List[SmartTransferTicketTerm] Ticket terms (legs) [optional]
expires_in float Number of hours for expiration.This data is valid only it ticket not in DRAFT state and it will be used to calculate expiresAt value [optional]
expires_at datetime Date and time at which the ticket will expire if no funding is performed. [optional]
submitted_at datetime Date and time when ticket is submitted. [optional]
expired_at datetime Date and time when ticket is expired. [optional]
canceled_at datetime Date and time when ticket is canceled. [optional]
fulfilled_at datetime Date and time when ticket is fulfilled. [optional]
external_ref_id str External Ref ID for Smart Transfer ticket. [optional]
note str Note [optional]
created_by_network_id str ID of network profile that created ticket
created_by_network_id_name str Name of network profile that created ticket
canceled_by_network_id_name str Name of network profile that canceled ticket [optional]
created_at datetime Date and time at which the ticket is created.
updated_at datetime Date and time of last ticket update.
canceled_by_me bool [optional]
created_by_me bool [optional]

Example

from fireblocks.models.smart_transfer_ticket import SmartTransferTicket

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

# convert the object into a dict
smart_transfer_ticket_dict = smart_transfer_ticket_instance.to_dict()
# create an instance of SmartTransferTicket from a dict
smart_transfer_ticket_from_dict = SmartTransferTicket.from_dict(smart_transfer_ticket_dict)

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