Skip to main content

ProductUnitDto

idnumberrequired

Unique identifier for the unit

Example: 1
unitLanguages object[]required

Translations of the unit in different languages

  • Array [
  • languagestringrequired

    Language code

    Possible values: [nl, en, de]

    singularstringrequired

    Singular form of the unit in this language

    Example: hour
    pluralstringrequired

    Plural form of the unit in this language

    Example: hours
  • ]
  • globalbooleanrequired

    Whether the unit is global

    ProductUnitDto
    {
    "id": 1,
    "unitLanguages": [
    {
    "language": "nl",
    "singular": "hour",
    "plural": "hours"
    }
    ],
    "global": true
    }