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
The TSS request's creation time in Unix timestamp format, measured in milliseconds.
[optional]
Example
fromcobo_waas2.models.tss_request_webhook_event_dataimportTSSRequestWebhookEventData# TODO update the JSON string belowjson="{}"# create an instance of TSSRequestWebhookEventData from a JSON stringtss_request_webhook_event_data_instance=TSSRequestWebhookEventData.from_json(json)
# print the JSON string representation of the objectprint(TSSRequestWebhookEventData.to_json())
# convert the object into a dicttss_request_webhook_event_data_dict=tss_request_webhook_event_data_instance.to_dict()
# create an instance of TSSRequestWebhookEventData from a dicttss_request_webhook_event_data_from_dict=TSSRequestWebhookEventData.from_dict(tss_request_webhook_event_data_dict)