CreateWorkerApplicationRequestDto
Backend-источник: core.businesslogicservice/Core.BusinessLogicService/Nuget.BusinessApiClient/Dto/Worker/Request/CreateWorkerApplicationRequestDto.cs (core.businesslogicservice).
Поля
| Поле | Тип (TS) | Обязательное | Описание | Тип (C#) |
|---|---|---|---|---|
gender | GenderParam | да | — | GenderParam |
firstName | string | да | — | string |
lastName | string | да | — | string |
email | string | да | — | string |
comment | string | null | нет | — | string? |
phoneNumber | string | да | — | string |
addresses | CreateWorkerApplicationAddressRequestDto[] | да | — | List<CreateWorkerApplicationAddressRequestDto> |
employmentType | EmploymentTypeParam | да | — | EmploymentTypeParam |
transportTypes | TransportTypeParam[] | да | — | List<TransportTypeParam> |
availabilityComment | string | null | нет | — | string? |
referralSource | ReferralSourceDto | да | — | ReferralSourceDto |
Пример
json
{
"gender": "<GenderParam>",
"firstName": "string",
"lastName": "string",
"email": "user@example.com",
"comment": "string",
"phoneNumber": "+49123456789",
"addresses": [],
"employmentType": "<EmploymentTypeParam>",
"transportTypes": [],
"availabilityComment": "string",
"referralSource": "<ReferralSourceDto>"
}