Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.28 KB

File metadata and controls

31 lines (22 loc) · 1.28 KB

CustomPayloadWithVersion

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]
version int Global custom payloads version.

Example

from instana_client.models.custom_payload_with_version import CustomPayloadWithVersion

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

# convert the object into a dict
custom_payload_with_version_dict = custom_payload_with_version_instance.to_dict()
# create an instance of CustomPayloadWithVersion from a dict
custom_payload_with_version_from_dict = CustomPayloadWithVersion.from_dict(custom_payload_with_version_dict)

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