Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 836 Bytes

File metadata and controls

29 lines (20 loc) · 836 Bytes

SystemRule

Properties

Name Type Description Notes
system_rule_id str

Example

from instana_client.models.system_rule import SystemRule

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

# convert the object into a dict
system_rule_dict = system_rule_instance.to_dict()
# create an instance of SystemRule from a dict
system_rule_from_dict = SystemRule.from_dict(system_rule_dict)

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