@oystehr/sdk
Version:
Oystehr SDK
30 lines (28 loc) • 590 B
text/typescript
// AUTOGENERATED -- DO NOT EDIT
/**
* Medications
*/
export type ErxSearchMedicationsResponse = {
/**
* The identifier for the medication.
*/
id: number;
/**
* The identifier for the combination of route, dose form, and drug.
*/
routedDoseFormDrugId: number;
/**
* Human readable name of medication.
*/
name: string;
/**
* RxNorm Concept Unique (RxCUI) identifier of medication.
*/
rxcui: number | null;
/**
* RxNorm Concept Unique (RxCUI) identifier of medication.
*/
ndc: string | null;
strength: string;
isObsolete: boolean;
}[];