UNPKG

@oystehr/sdk

Version:

Oystehr SDK

26 lines (25 loc) 595 B
/** * 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'; }[];