Name | Type | Description | Notes |
---|---|---|---|
text | str | [optional] | |
preferred | bool | [optional] |
from phrasetms_client.models.term import Term
# TODO update the JSON string below
json = "{}"
# create an instance of Term from a JSON string
term_instance = Term.from_json(json)
# print the JSON string representation of the object
print Term.to_json()
# convert the object into a dict
term_dict = term_instance.to_dict()
# create an instance of Term from a dict
term_from_dict = Term.from_dict(term_dict)