ProductLocalized Data Type

Product localization resource. Contains localized information about the product.

Available Since
1.3.0
Properties
Name Type Description
id number Unique numeric identifier for the ProductLocalized.
language Language The language information data.
name string The localized name of the product.
description string The localized description of the product.
shortDescription string Short localized description of the product.
Used in
ProductLocalized (JSON)
{
  "productLocalized" : {
    "id" : 12345,
    "language" : {
      "id" : 12345,
      "code" : "en",
      "name" : "English"
    },
    "name" : "Premium T-shirt",
    "description" : "Men's premium shirt",
    "shortDescription" : "A real classic T-shirt for men."
  }
}
ProductLocalized Data Type

Product localization resource. Contains localized information about the product.

Available Since
1.3.0
Properties
Name Type Description
description string The localized description of the product.
id int Unique numeric identifier for the ProductLocalized.
language Language The language information data.
name string The localized name of the product.
shortDescription string Short localized description of the product.
Used in
ProductLocalized (XML)
<productLocalized>
  <id>...</id>
  <language>
    <id>...</id>
    <code>en</code>
    <name>English</name>
  </language>
  <name>Premium T-shirt</name>
  <description>Men's premium shirt</description>
  <shortDescription>A real classic T-shirt for men.</shortDescription>
</productLocalized>