Skip to content

SuggestionCreate

Properties

NameTypeDescriptionNotes
subplan_idstr
statusstr[optional]
dataDict[str, object][optional]
quantityint
filesList[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)

[Back to API list] [Back to SDK]

Released under the MIT License.