Skip to content

SolutionCreate

Properties

NameTypeDescriptionNotes
descriptionstr[optional]
project_idstr

Example

python
from syntheticusers.models.solution_create import SolutionCreate

# TODO update the JSON string below
json = "{}"
# create an instance of SolutionCreate from a JSON string
solution_create_instance = SolutionCreate.from_json(json)
# print the JSON string representation of the object
print(SolutionCreate.to_json())

# convert the object into a dict
solution_create_dict = solution_create_instance.to_dict()
# create an instance of SolutionCreate from a dict
solution_create_from_dict = SolutionCreate.from_dict(solution_create_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.