ProposalUserDto
idnumberrequired
Unique identifier for the user
firstNamestringrequired
First name of the user
Example:
John
lastNamestringrequired
Last name of the user
Example:
Doe
emailstringrequired
Email address of the user
Example:
john.doe@company.com
avatarstring
URL to the user's avatar image
Example:
https://example.com/avatars/john-doe.jpg
languagestringrequired
User's preferred language
Possible values: [nl
, en
, de
]
ProposalUserDto
{
"id": 0,
"firstName": "John",
"lastName": "Doe",
"email": "john.doe@company.com",
"avatar": "https://example.com/avatars/john-doe.jpg",
"language": "nl"
}