Skip to content

Solution

Properties

NameTypeDescriptionNotes
idstr
descriptionstr
project_idstr
deletedbool
created_atdatetime

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)

[Back to API list] [Back to SDK]

Released under the MIT License.