Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.11 KB

GlossaryEditDto.md

File metadata and controls

29 lines (22 loc) · 1.11 KB

GlossaryEditDto

Properties

Name Type Description Notes
name str
langs List[str]
owner IdReference [optional]

Example

from phrasetms_client.models.glossary_edit_dto import GlossaryEditDto

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

# convert the object into a dict
glossary_edit_dto_dict = glossary_edit_dto_instance.to_dict()
# create an instance of GlossaryEditDto from a dict
glossary_edit_dto_from_dict = GlossaryEditDto.from_dict(glossary_edit_dto_dict)

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