Skip to content

Latest commit

 

History

History
40 lines (33 loc) · 1.74 KB

TermEditDto.md

File metadata and controls

40 lines (33 loc) · 1.74 KB

TermEditDto

Properties

Name Type Description Notes
text str
lang str [optional]
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]
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]

Example

from phrasetms_client.models.term_edit_dto import TermEditDto

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

# convert the object into a dict
term_edit_dto_dict = term_edit_dto_instance.to_dict()
# create an instance of TermEditDto from a dict
term_edit_dto_from_dict = TermEditDto.from_dict(term_edit_dto_dict)

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