Appearance
Solution
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| description | str | ||
| project_id | str | ||
| deleted | bool | ||
| created_at | datetime |
Example
python
from syntheticusers.models.solution import Solution
# TODO update the JSON string below
json = "{}"
# create an instance of Solution from a JSON string
solution_instance = Solution.from_json(json)
# print the JSON string representation of the object
print(Solution.to_json())
# convert the object into a dict
solution_dict = solution_instance.to_dict()
# create an instance of Solution from a dict
solution_from_dict = Solution.from_dict(solution_dict)