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 the ticket expiration time (in hours) after the ticket is submitted. If no funding source is set for any term, the ticket will automatically expire after given time. If expiresIn is not sent ticket will not expire.
[optional]
Example
fromfireblocks.models.smart_transfer_submit_ticketimportSmartTransferSubmitTicket# TODO update the JSON string belowjson="{}"# create an instance of SmartTransferSubmitTicket from a JSON stringsmart_transfer_submit_ticket_instance=SmartTransferSubmitTicket.from_json(json)
# print the JSON string representation of the objectprint(SmartTransferSubmitTicket.to_json())
# convert the object into a dictsmart_transfer_submit_ticket_dict=smart_transfer_submit_ticket_instance.to_dict()
# create an instance of SmartTransferSubmitTicket from a dictsmart_transfer_submit_ticket_from_dict=SmartTransferSubmitTicket.from_dict(smart_transfer_submit_ticket_dict)