| Name |
Type |
Description |
Notes |
| id |
str |
|
[optional] |
| deleted |
bool |
|
[optional] |
| name |
str |
|
|
| description |
str |
|
[optional] |
| language |
str |
|
|
| decimal_mark |
str |
|
|
| time_format |
str |
|
|
| thousand_separator |
str |
|
[optional] |
| week_start |
str |
|
|
| date_format |
str |
|
|
| time_zone |
str |
|
|
| created_at |
str |
|
[optional] |
| modified_at |
str |
|
[optional] |
| created_by_id |
str |
|
[optional] |
| created_by_name |
str |
|
[optional] |
| modified_by_id |
str |
|
[optional] |
| modified_by_name |
str |
|
[optional] |
from clientapi_atrocore.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]