Name | Type | Description | Notes |
---|---|---|---|
text | str | [optional] |
from phrasetms_client.models.suggestion import Suggestion
# TODO update the JSON string below
json = "{}"
# create an instance of Suggestion from a JSON string
suggestion_instance = Suggestion.from_json(json)
# print the JSON string representation of the object
print Suggestion.to_json()
# convert the object into a dict
suggestion_dict = suggestion_instance.to_dict()
# create an instance of Suggestion from a dict
suggestion_from_dict = Suggestion.from_dict(suggestion_dict)