InsuranceDto
Backend-источник: core.businesslogicservice/Core.BusinessLogicService/Nuget.BusinessApiClient/Dto/Client/InsuranceDto.cs (core.businesslogicservice).
Поля
| Поле | Тип (TS) | Обязательное | Описание | Тип (C#) |
|---|---|---|---|---|
id | number | да | — | int |
number | string | null | нет | — | string? |
type | InsuranceTypeDto | null | нет | — | InsuranceTypeDto? |
clientId | number | да | — | int |
insuranceCompanyId | number | null | нет | — | int? |
coveragePercentage | number | null | нет | — | double? |
paymentType | string | null | нет | — | string? |
insuranceCompany | InsuranceCompanyDto | null | нет | — | InsuranceCompanyDto? |
Пример
json
{
"id": 0,
"number": "string",
"type": "<insurancetypedto>",
"clientId": 0,
"insuranceCompanyId": 0,
"coveragePercentage": 0,
"paymentType": "string",
"insuranceCompany": "<insurancecompanydto>"
}