Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 845 Bytes

Term.md

File metadata and controls

28 lines (21 loc) · 845 Bytes

Term

Properties

Name Type Description Notes
text str [optional]
preferred bool [optional]

Example

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)

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