UpdateUserRequestDto
Backend-источник: core.usermanagementservice/Core.UserManagementService/Nuget.UserApiClient/Dto/Requests/UpdateUserRequestDto.cs (core.usermanagementservice).
Поля
| Поле | Тип (TS) | Обязательное | Описание | Тип (C#) |
|---|---|---|---|---|
id | number | да | — | int |
firstName | string | null | нет | — | string? |
lastName | string | null | нет | — | string? |
position | UserPositionDto | null | нет | — | UserPositionDto? |
password | string | null | нет | — | string? |
userType | UserTypeDto | null | нет | — | UserTypeDto? |
local | string | null | нет | — | string? |
Пример
json
{
"id": 0,
"firstName": "string",
"lastName": "string",
"position": "<userpositiondto>",
"password": "string",
"userType": "<usertypedto>",
"local": "string"
}