Localization settings
Name | Type | Description | Notes |
---|---|---|---|
timezone | str | A valid timezone id supported by @see java.time.ZoneId | [optional] |
locales | List[str] | A list of Locales definied by IETF BCP 47. The ordering is significant. The first locale (leftmost) is used for sort and query localization, whereas the remaining locales are used for query only. | [optional] |
from alfresco_search_api_client.models.request_localization import RequestLocalization
# TODO update the JSON string below
json = "{}"
# create an instance of RequestLocalization from a JSON string
request_localization_instance = RequestLocalization.from_json(json)
# print the JSON string representation of the object
print RequestLocalization.to_json()
# convert the object into a dict
request_localization_dict = request_localization_instance.to_dict()
# create an instance of RequestLocalization from a dict
request_localization_form_dict = request_localization.from_dict(request_localization_dict)