Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.1 KB

File metadata and controls

31 lines (22 loc) · 1.1 KB

CustomPayloadField

Custom payload fields to send additional information in the alert notifications. Can be left empty.

Properties

Name Type Description Notes
key str A user-specified unique identifier or name for a custom payload entry.
type str

Example

from instana_client.models.custom_payload_field import CustomPayloadField

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

# convert the object into a dict
custom_payload_field_dict = custom_payload_field_instance.to_dict()
# create an instance of CustomPayloadField from a dict
custom_payload_field_from_dict = CustomPayloadField.from_dict(custom_payload_field_dict)

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