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
Required parameters for custom payload configuration.
last_updated
int
Unix timestamp representing the time (in milliseconds) the configuration was last updated.
[optional]
Example
frominstana_client.models.custom_payload_with_last_updatedimportCustomPayloadWithLastUpdated# TODO update the JSON string belowjson="{}"# create an instance of CustomPayloadWithLastUpdated from a JSON stringcustom_payload_with_last_updated_instance=CustomPayloadWithLastUpdated.from_json(json)
# print the JSON string representation of the objectprint(CustomPayloadWithLastUpdated.to_json())
# convert the object into a dictcustom_payload_with_last_updated_dict=custom_payload_with_last_updated_instance.to_dict()
# create an instance of CustomPayloadWithLastUpdated from a dictcustom_payload_with_last_updated_from_dict=CustomPayloadWithLastUpdated.from_dict(custom_payload_with_last_updated_dict)