/**
 * Allergens
 */
export type ErxSearchAllergensResponse = {
    /**
     * The identifier for the allergen.
     */
    id: number;
    /**
     * Human readable name of allergen.
     */
    name: string;
    /**
     * Brand name of the allergen, if applicable.
     */
    brandName?: string;
    /**
     * Type of allergen.
     */
    type: 'AllergenClass' | 'FoodAndEnvironmentalAllergens' | 'NoKnownAllergy' | 'RoutedDoseFormDrugs' | 'ScreenableIngredient';
    /**
     * Category of allergen.
     */
    category: 'CommonAllergens' | 'UncommonAllergens' | 'OtherBrandDrugs';
}[];
