Appearance
SuggestionUpdate
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| status | str | [optional] | |
| data | Dict[str, object] | [optional] | |
| quantity | int | ||
| files | List[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)