| Name |
Type |
Description |
Notes |
| id |
str |
|
[optional] |
| text |
str |
|
|
| lang |
str |
|
[optional] |
| rtl |
bool |
|
[optional] |
| modified_at |
datetime |
|
[optional] |
| created_at |
datetime |
|
[optional] |
| modified_by |
UserReference |
|
[optional] |
| created_by |
UserReference |
|
[optional] |
| case_sensitive |
bool |
|
[optional] |
| exact_match |
bool |
|
[optional] |
| forbidden |
bool |
|
[optional] |
| preferred |
bool |
|
[optional] |
| status |
str |
|
[optional] |
| concept_id |
str |
|
[optional] |
| usage |
str |
|
[optional] |
| note |
str |
|
[optional] |
| writable |
bool |
|
[optional] |
| short_translation |
str |
|
[optional] |
| term_type |
str |
|
[optional] |
| part_of_speech |
str |
|
[optional] |
| gender |
str |
|
[optional] |
| number |
str |
|
[optional] |
| definition |
str |
|
[optional] |
| domain |
str |
|
[optional] |
| sub_domains |
List[str] |
|
[optional] |
| url |
str |
|
[optional] |
| concept_note |
str |
|
[optional] |
from phrasetms_client.models.term_dto import TermDto
# TODO update the JSON string below
json = "{}"
# create an instance of TermDto from a JSON string
term_dto_instance = TermDto.from_json(json)
# print the JSON string representation of the object
print TermDto.to_json()
# convert the object into a dict
term_dto_dict = term_dto_instance.to_dict()
# create an instance of TermDto from a dict
term_dto_from_dict = TermDto.from_dict(term_dto_dict)
[Back to Model list] [Back to API list] [Back to README]