Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.28 KB

File metadata and controls

30 lines (21 loc) · 1.28 KB

CustomPayloadWithLastUpdated

Properties

Name Type Description Notes
fields List[CustomPayloadField] Required parameters for custom payload configuration.
last_updated int Unix timestamp representing the time (in milliseconds) the configuration was last updated. [optional]

Example

from instana_client.models.custom_payload_with_last_updated import CustomPayloadWithLastUpdated

# TODO update the JSON string below
json = "{}"
# create an instance of CustomPayloadWithLastUpdated from a JSON string
custom_payload_with_last_updated_instance = CustomPayloadWithLastUpdated.from_json(json)
# print the JSON string representation of the object
print(CustomPayloadWithLastUpdated.to_json())

# convert the object into a dict
custom_payload_with_last_updated_dict = custom_payload_with_last_updated_instance.to_dict()
# create an instance of CustomPayloadWithLastUpdated from a dict
custom_payload_with_last_updated_from_dict = CustomPayloadWithLastUpdated.from_dict(custom_payload_with_last_updated_dict)

[Back to Model list] [Back to API list] [Back to README]