Package-level declarations

Types

Link copied to clipboard

Presenter class for the entity.surgeryreport.medicaldevice.ImplantableMedicalDevice class. It returns: the id of the implantable medical device and the type

Link copied to clipboard
@Serializable
data class MedicalTechnologyApiDto(val id: String, val name: String, val description: String? = null, val type: MedicalTechnologyApiDtoType, val inUse: Boolean = false)

Presenter class for the entity.surgeryreport.medicaldevice.MedicalTechnology class. It returns: the id, the name, the description, the type of the medical technology and moreover if it is inUse.

Link copied to clipboard

Presenter enum to handle medical technology type.

Link copied to clipboard
@Serializable
data class MedicalTechnologyUsageApiDto(val dateTime: String, val medicalTechnology: MedicalTechnologyApiDto)

Presenter class that represent the usage of a medicalTechnology in a specific dateTime.