Display language of the user
| Name | Type | Description | Notes |
|---|
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)