Package-level declarations

Types

Link copied to clipboard

It describes an implantable medical device used during a surgery inside an Operating Room. It is identified by its id and it is of a particular type.

Link copied to clipboard
@Serializable
data class ImplantableMedicalDeviceID(val value: String)

Identification for ImplantableMedicalDevice.

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

It describes a Medical Technology used inside an Operating Room. A medical technology is of a particular type and is identified by its id and described by a name and a description. The technology can be inUse inside the Operating Room.

Link copied to clipboard
@Serializable
data class MedicalTechnologyID(val value: String)

Identification of MedicalTechnology.

Link copied to clipboard