Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 909 Bytes

File metadata and controls

32 lines (23 loc) · 909 Bytes

Problem

Properties

Name Type Description Notes
fix_suggestion str [optional]
id str
problem_text str [optional]
severity int [optional]

Example

from instana_client.models.problem import Problem

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

# convert the object into a dict
problem_dict = problem_instance.to_dict()
# create an instance of Problem from a dict
problem_from_dict = Problem.from_dict(problem_dict)

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