Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.03 KB

TermBaseReference.md

File metadata and controls

29 lines (22 loc) · 1.03 KB

TermBaseReference

Properties

Name Type Description Notes
name str [optional]
id str [optional]
uid str [optional]

Example

from phrasetms_client.models.term_base_reference import TermBaseReference

# TODO update the JSON string below
json = "{}"
# create an instance of TermBaseReference from a JSON string
term_base_reference_instance = TermBaseReference.from_json(json)
# print the JSON string representation of the object
print TermBaseReference.to_json()

# convert the object into a dict
term_base_reference_dict = term_base_reference_instance.to_dict()
# create an instance of TermBaseReference from a dict
term_base_reference_from_dict = TermBaseReference.from_dict(term_base_reference_dict)

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