@oystehr/sdk
Version:
Oystehr SDK
20 lines (19 loc) • 396 B
TypeScript
/**
* 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;
}[];
}