Appearance
SolutionCreate
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| description | str | [optional] | |
| project_id | str |
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)