Skip to content

CallSessionDto

← Call Center DTO

Backend-источник: features.callcenterservice/Features.CallCenterService/Nuget.CallCenterApiClient/Dto/CallSessions/CallSessionDto.cs (features.callcenterservice).

Поля

ПолеТип (TS)ОбязательноеОписаниеТип (C#)
idnumberдаint
agentIdnumberдаint
callIdnumber | nullнетint?
phoneNumberstringдаstring
callDirectionCallDirectionDtoдаCallDirectionDto
startedAtstringдаDateTime
endedAtstring | nullнетDateTime?
wrapupReasonWrapupReasonDto | nullнетWrapupReasonDto?
commentstring | nullнетstring?
createDateTimestringдаDateTimeOffset
updateDateTimestring | nullнетDateTimeOffset?
agentAgentSummaryDto | nullнетAgentSummaryDto?

Пример

json
{
  "id": 0,
  "agentId": 0,
  "callId": 0,
  "phoneNumber": "+49123456789",
  "callDirection": "<CallDirectionDto>",
  "startedAt": "2026-05-05T08:00:00Z",
  "endedAt": "2026-05-05T08:00:00Z",
  "wrapupReason": "<wrapupreasondto>",
  "comment": "string",
  "createDateTime": "2026-05-05T08:00:00Z",
  "updateDateTime": "2026-05-05T08:00:00Z",
  "agent": "<agentsummarydto>"
}