ProductUnitDto
idnumberrequired
Unique identifier for the unit
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:
Stuk
pluralstringrequired
Plural form of the unit in this language
Example:
Stuks
]
ProductUnitDto
{
"id": 0,
"unitLanguages": [
{
"language": "nl",
"singular": "Stuk",
"plural": "Stuks"
}
]
}