ProductViewLocalized Data Type

Localized display name of a product view for a specific language.

Available Since
1.3.0
Properties
Name Type Description
id number Unique numeric identifier for the ProductViewLocalized.
language Language The language information.
name string The localized name of the view.
ProductViewLocalized (JSON)
{
  "productViewLocalized" : {
    "id" : 12345,
    "language" : {
      "id" : 12345,
      "code" : "en",
      "name" : "English"
    },
    "name" : "Vorne"
  }
}
ProductViewLocalized Data Type

Localized display name of a product view for a specific language.

Available Since
1.3.0
Properties
Name Type Description
id int Unique numeric identifier for the ProductViewLocalized.
language Language The language information.
name string The localized name of the view.
ProductViewLocalized (XML)
<productViewLocalized>
  <id>...</id>
  <language>
    <id>...</id>
    <code>en</code>
    <name>English</name>
  </language>
  <name>Vorne</name>
</productViewLocalized>