/**
 * Medications
 */
export interface ErxV1MedicationSearchResponse {
    medications?: {
        /**
         * The Photon identifier for the medication.
         */
        id: string;
        /**
         * Human readible name of medication.
         */
        name: string;
        codes: {
            /**
             * RxNorm Concept Unique (RxCUI) identifier of medication.
             */
            rxcui?: string | null;
            productNDC?: string | null;
            packageNDC?: string | null;
            SKU?: string | null;
            HCPCS?: string | null;
        };
        /**
         * Null implies a medication can not be prescribed
         */
        type?: ('RX' | 'OTC') | null;
        concept: 'DRUG' | 'PRODUCT' | 'PACKAGE';
        schedule?: ('I' | 'II' | 'III' | 'IV' | 'V') | null;
        controlled: boolean;
        brandName?: string | null;
        genericName?: string | null;
        strength?: string | null;
        form?: string | null;
        manufacturer?: string | null;
        description?: string | null;
    }[];
}
