@oystehr/sdk
Version:
Oystehr SDK
33 lines (31 loc) • 610 B
text/typescript
// AUTOGENERATED -- DO NOT EDIT
/**
* 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';
}[];