Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 906 Bytes

File metadata and controls

31 lines (22 loc) · 906 Bytes

RuleInput

List of input rules of the Built-in Event Specification

Properties

Name Type Description Notes
input_kind str
input_name str

Example

from instana_client.models.rule_input import RuleInput

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

# convert the object into a dict
rule_input_dict = rule_input_instance.to_dict()
# create an instance of RuleInput from a dict
rule_input_from_dict = RuleInput.from_dict(rule_input_dict)

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