@causalfoundry/js-sdk
Version:
Causal Foundry WEB SDK (JS/TS)
17 lines (15 loc) • 544 B
text/typescript
export interface MedicalEquipmentProperties {
name: string // medical consumable name (e.g. 2-Way Catheter 16FR)
market_id: string
description?: string
supplier_id: string,
supplier_name: string,
producer?: string,
packaging: string,
packaging_size: number, // (e.g. 50)
packaging_units: string, // (e.g. pks)
category?: string // (lowercase) category/family of the consumable (e.g. catheter)
}
export interface MedicalEquipmentPropertiesInternal extends MedicalEquipmentProperties {
id: string
}