SurgeryReportEntryDto

@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.

Parameters

surgicalProcessID

the id of the surgical process.

patientId

the id of the patient.

patientName

the name of the patient.

patientSurname

the surname of the patient.

surgicalProcessDescription

the description of the surgical process.

surgeryDate

the date of the surgical process.

Constructors

Link copied to clipboard
constructor(surgicalProcessID: String, patientId: String, patientName: String?, patientSurname: String?, surgicalProcessDescription: String, surgeryDate: String)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard

Extension function to convert a SurgeryReportEntryDto into a SurgeryReportEntry.