MotiveLocalized Data Type

Localized name and description of a motive for a specific language.

Available Since
1.3.0
Properties
Name Type Description
id number Unique numeric identifier for the motive localization.
name string The localized name of the motive.
language Language The language information data.
Used in
MotiveLocalized (JSON)
{
  "motiveLocalized" : {
    "id" : 12345,
    "name" : "funny thing",
    "language" : {
      "id" : 12345,
      "code" : "en",
      "name" : "English"
    }
  }
}
MotiveLocalized Data Type

Localized name and description of a motive for a specific language.

Available Since
1.3.0
Properties
Name Type Description
id int Unique numeric identifier for the motive localization.
language Language The language information data.
name string The localized name of the motive.
Used in
MotiveLocalized (XML)
<motiveLocalized>
  <id>...</id>
  <name>funny thing</name>
  <language>
    <id>...</id>
    <code>en</code>
    <name>English</name>
  </language>
</motiveLocalized>