Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 897 Bytes

File metadata and controls

30 lines (21 loc) · 897 Bytes

AbstractRule

Properties

Name Type Description Notes
rule_type str
severity int [optional]

Example

from instana_client.models.abstract_rule import AbstractRule

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

# convert the object into a dict
abstract_rule_dict = abstract_rule_instance.to_dict()
# create an instance of AbstractRule from a dict
abstract_rule_from_dict = AbstractRule.from_dict(abstract_rule_dict)

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