Skip to content

Problem

Properties

NameTypeDescriptionNotes
idstr
descriptionstr
project_idstr
deletedbool
created_atdatetime

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)

[Back to API list] [Back to SDK]

Released under the MIT License.