| Name | Type | Description | Notes |
|---|---|---|---|
| fix_suggestion | str | [optional] | |
| id | str | ||
| problem_text | str | [optional] | |
| severity | int | [optional] |
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)