/**
 * Success
 */
export interface ErxCheckPrecheckInteractionsResponse {
    allergies: {
        /**
         * Message describing the interaction.
         */
        message: string;
    }[];
    medications: {
        /**
         * Message describing the interaction.
         */
        message: string;
        /**
         * Severity level of the interaction.
         */
        severityLevel: 'MajorInteraction' | 'ModerateInteraction' | 'MinorInteraction' | 'Unknown';
        /**
         * List of medications involved in the interaction.
         */
        medications?: {
            /**
             * The Medi-Span identifier for the medication.
             */
            id: number;
            /**
             * Human readable name of medication.
             */
            name: string;
        }[];
        /**
         * Indicates if the interaction includes pending medications.
         */
        includesPending: boolean;
    }[];
}
