Skip to content

SuggestionUpdate

Properties

NameTypeDescriptionNotes
statusstr[optional]
dataDict[str, object][optional]
quantityint
filesList[str][optional]

Example

python
from syntheticusers.models.suggestion_update import SuggestionUpdate

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

# convert the object into a dict
suggestion_update_dict = suggestion_update_instance.to_dict()
# create an instance of SuggestionUpdate from a dict
suggestion_update_from_dict = SuggestionUpdate.from_dict(suggestion_update_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.