Appearance
SuggestionCreate
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| subplan_id | str | ||
| status | str | [optional] | |
| data | Dict[str, object] | [optional] | |
| quantity | int | ||
| files | List[str] | [optional] |
Example
python
from syntheticusers.models.suggestion_create import SuggestionCreate
# TODO update the JSON string below
json = "{}"
# create an instance of SuggestionCreate from a JSON string
suggestion_create_instance = SuggestionCreate.from_json(json)
# print the JSON string representation of the object
print(SuggestionCreate.to_json())
# convert the object into a dict
suggestion_create_dict = suggestion_create_instance.to_dict()
# create an instance of SuggestionCreate from a dict
suggestion_create_from_dict = SuggestionCreate.from_dict(suggestion_create_dict)