Appearance
Problem
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| description | str | ||
| project_id | str | ||
| deleted | bool | ||
| created_at | datetime |
Example
python
from syntheticusers.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)