/**
 * Allergens
 */
export interface ErxV1AllergySearchResponse {
    allergens?: {
        /**
         * The Photon identifier for the allergen.
         */
        id?: string;
        /**
         * Human readible name of allergen.
         */
        name?: string;
        /**
         * RxNorm Concept Unique (RxCUI) identifier of allergen.
         */
        rxcui?: string;
    }[];
}
