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