| Name |
Type |
Description |
Notes |
| text |
str |
|
|
| lang |
str |
|
|
| case_sensitive |
bool |
Default: false |
[optional] |
| exact_match |
bool |
Default: false |
[optional] |
| forbidden |
bool |
Default: false |
[optional] |
| preferred |
bool |
Default: false |
[optional] |
| status |
str |
|
[optional] |
| concept_id |
str |
|
[optional] |
| usage |
str |
|
[optional] |
| note |
str |
|
[optional] |
| short_translation |
str |
|
[optional] |
| term_type |
str |
|
[optional] |
| part_of_speech |
str |
|
[optional] |
| gender |
str |
|
[optional] |
| number |
str |
|
[optional] |
from phrasetms_client.models.term_create_dto import TermCreateDto
# TODO update the JSON string below
json = "{}"
# create an instance of TermCreateDto from a JSON string
term_create_dto_instance = TermCreateDto.from_json(json)
# print the JSON string representation of the object
print TermCreateDto.to_json()
# convert the object into a dict
term_create_dto_dict = term_create_dto_instance.to_dict()
# create an instance of TermCreateDto from a dict
term_create_dto_from_dict = TermCreateDto.from_dict(term_create_dto_dict)
[Back to Model list] [Back to API list] [Back to README]