Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 863 Bytes

Locale.md

File metadata and controls

29 lines (21 loc) · 863 Bytes

Locale

Properties

Name Type Description Notes
language str locale string [optional]
is_default bool indicator if language is default [optional]

Example

from onelogin.models.locale import Locale

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

# convert the object into a dict
locale_dict = locale_instance.to_dict()
# create an instance of Locale from a dict
locale_form_dict = locale.from_dict(locale_dict)

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