Appearance
ProblemUpdate
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| description | str | [optional] |
Example
python
from syntheticusers.models.problem_update import ProblemUpdate
# TODO update the JSON string below
json = "{}"
# create an instance of ProblemUpdate from a JSON string
problem_update_instance = ProblemUpdate.from_json(json)
# print the JSON string representation of the object
print(ProblemUpdate.to_json())
# convert the object into a dict
problem_update_dict = problem_update_instance.to_dict()
# create an instance of ProblemUpdate from a dict
problem_update_from_dict = ProblemUpdate.from_dict(problem_update_dict)