Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 932 Bytes

File metadata and controls

31 lines (22 loc) · 932 Bytes

ICMPValidation

Properties

Name Type Description Notes
key str
operator str
value int

Example

from instana_client.models.icmp_validation import ICMPValidation

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

# convert the object into a dict
icmp_validation_dict = icmp_validation_instance.to_dict()
# create an instance of ICMPValidation from a dict
icmp_validation_from_dict = ICMPValidation.from_dict(icmp_validation_dict)

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