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