/**
 * Medication
 */
export interface ErxGetMedicationResponse {
    /**
     * The Medi-Span identifier for the medication.
     */
    id: number;
    /**
     * RxNorm Concept Unique (RxCUI) identifier of medication.
     */
    ndc?: string | null;
    /**
     * RxNorm Concept Unique (RxCUI) identifier of medication.
     */
    rxcui?: number | null;
    /**
     * Human readable name of medication.
     */
    name: string;
    /**
     * Alternative human readable name of medication.
     */
    displayName?: string;
    route?: string;
    doseForm?: string;
    strength?: string;
    dispenseUnit?: string;
    isBrandName: boolean;
    genericName?: string | null;
    isOtc: boolean;
    classification?: string;
    schedule?: number;
    stateSchedules?: {
        name: string;
        schedule?: number;
    }[];
    isObsolete: boolean;
}
