Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 904 Bytes

File metadata and controls

29 lines (20 loc) · 904 Bytes

DisplayLanguage

Display language of the user

Properties

Name Type Description Notes

Example

from onelens_backend_client.models.display_language import DisplayLanguage

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

# convert the object into a dict
display_language_dict = display_language_instance.to_dict()
# create an instance of DisplayLanguage from a dict
display_language_form_dict = display_language.from_dict(display_language_dict)

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