| Name | Type | Description | Notes |
|---|---|---|---|
| system_rule_id | str |
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)