Locale¶
The Locale object represents a specific locale of the storefront.
classDiagram
direction LR
Locale --> LocalesList
class LocalesList{
}
class Locale{
int id
string locale
string name
string region
Url url
}
Properties¶
Attribute name | Type | Description |
---|---|---|
id | int |
The unique identifier of the locale. |
locale | string |
System localization in ISO-8859-1 format. |
name | string |
Display name of the locale. |
region | string |
Display region of the locale. |
url | Url |
The Url object represents an external or internal url of locale. |