Package-level declarations

Types

Link copied to clipboard
@Serializable
data class SurgeryReportApiDto(val surgicalProcessID: String, val surgeryDate: String, val surgicalProcessDescription: String, val patientID: String, val roomsInvolved: List<RoomApiDto>, val inChargeHealthProfessionalID: String?, val healthcareUser: HealthcareUserApiDto?, val stepData: Map<SurgicalProcessStepApiDto, SurgicalProcessStepAggregateDataApiDto>, val consumedImplantableMedicalDevice: Set<ImplantableMedicalDeviceApiDto>, val medicalTechnologyUsageData: Set<MedicalTechnologyUsageApiDto>, val healthProfessionalTrackingInformation: List<TrackingInformationApiDto>, val additionalData: String)
Link copied to clipboard
@Serializable
data class SurgeryReportEntry(val surgicalProcessID: String, val patientId: String, val patientName: String?, val patientSurname: String?, val surgicalProcessDescription: String, val surgeryDate: String)

It represents the presentation of a single entity.surgeryreport.report.SurgeryReport entry. The necessary information are the surgicalProcessID, the patientId, the patientName, the patientSurname, the surgicalProcessDescription and the surgeryDate.

Link copied to clipboard
@Serializable
data class SurgeryReportEntryDto(val surgicalProcessID: String, val patientId: String, val patientName: String?, val patientSurname: String?, val surgicalProcessDescription: String, val surgeryDate: String)

Class that model the principal information of a surgery report in the surgery report archive.

Link copied to clipboard
@Serializable
data class SurgeryReportIntegrationDto(val additionalData: String)

The Dto for surgery report integration.

Link copied to clipboard
@Serializable
data class SurgicalProcessStepAggregateDataApiDto(val startDateTime: String, val stopDateTime: String?, val patientVitalSignAggregateData: AggregateDataApiDto<PatientVitalSignsApiDto>, val environmentalAggregateData: Map<RoomApiDtoType, AggregateDataApiDto<RoomEnvironmentalDataApiDto>>)

Functions

Link copied to clipboard

Extension function to convert a SurgeryReportEntryDto into a SurgeryReportEntry.

Link copied to clipboard

Extension function to convert a SurgeryReportEntry into a SurgeryReportEntryDto.