Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.02 KB

LanguageListDto.md

File metadata and controls

29 lines (21 loc) · 1.02 KB

LanguageListDto

envelope for list of languages

Properties

Name Type Description Notes
languages List[LanguageDto]

Example

from phrasetms_client.models.language_list_dto import LanguageListDto

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

# convert the object into a dict
language_list_dto_dict = language_list_dto_instance.to_dict()
# create an instance of LanguageListDto from a dict
language_list_dto_from_dict = LanguageListDto.from_dict(language_list_dto_dict)

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