Skip to content

ProblemCreate

Properties

NameTypeDescriptionNotes
descriptionstr[optional]
project_idstr

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)

[Back to API list] [Back to SDK]

Released under the MIT License.