You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sets ticket expiration time (in hours) after a ticket is submitted. If no funding source is set to any term, the ticket will automatically expire after given time.
Example
fromfireblocks.models.smart_transfer_set_ticket_expirationimportSmartTransferSetTicketExpiration# TODO update the JSON string belowjson="{}"# create an instance of SmartTransferSetTicketExpiration from a JSON stringsmart_transfer_set_ticket_expiration_instance=SmartTransferSetTicketExpiration.from_json(json)
# print the JSON string representation of the objectprint(SmartTransferSetTicketExpiration.to_json())
# convert the object into a dictsmart_transfer_set_ticket_expiration_dict=smart_transfer_set_ticket_expiration_instance.to_dict()
# create an instance of SmartTransferSetTicketExpiration from a dictsmart_transfer_set_ticket_expiration_from_dict=SmartTransferSetTicketExpiration.from_dict(smart_transfer_set_ticket_expiration_dict)