Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 849 Bytes

Suggestion.md

File metadata and controls

27 lines (20 loc) · 849 Bytes

Suggestion

Properties

Name Type Description Notes
text str [optional]

Example

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)

[Back to Model list] [Back to API list] [Back to README]