/**
 * 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;
}[];
