UNPKG

@oystehr/sdk

Version:

Oystehr SDK

41 lines (39 loc) 982 B
// AUTOGENERATED -- DO NOT EDIT /** * Medications */ export interface ErxV2MedicationSearchResponse { medications?: { /** * Internal identifier for the medication. */ id: string; /** * Human readible name of medication. */ name: string; codes: { /** * RxNorm Concept Unique (RxCUI) identifier of medication. */ rxcui?: string | null; productNDC?: string | null; packageNDC?: string | null; SKU?: string | null; HCPCS?: string | null; }; /** * Null implies a medication can not be prescribed */ type?: ('RX' | 'OTC') | null; concept?: ('DRUG' | 'PRODUCT' | 'PACKAGE') | null; schedule?: ('I' | 'II' | 'III' | 'IV' | 'V') | null; controlled?: boolean | null; brandName?: string | null; genericName?: string | null; strength?: string | null; form?: string | null; manufacturer?: string | null; description?: string | null; }[]; }