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
Each workspace can set their own external id they want to refer to this Ticket
Example
fromfireblocks.models.smart_transfer_set_ticket_external_idimportSmartTransferSetTicketExternalId# TODO update the JSON string belowjson="{}"# create an instance of SmartTransferSetTicketExternalId from a JSON stringsmart_transfer_set_ticket_external_id_instance=SmartTransferSetTicketExternalId.from_json(json)
# print the JSON string representation of the objectprint(SmartTransferSetTicketExternalId.to_json())
# convert the object into a dictsmart_transfer_set_ticket_external_id_dict=smart_transfer_set_ticket_external_id_instance.to_dict()
# create an instance of SmartTransferSetTicketExternalId from a dictsmart_transfer_set_ticket_external_id_from_dict=SmartTransferSetTicketExternalId.from_dict(smart_transfer_set_ticket_external_id_dict)