UNPKG

@oystehr/sdk

Version:

Oystehr SDK

42 lines (40 loc) 825 B
// AUTOGENERATED -- DO NOT EDIT /** * Medication */ export interface ErxGetMedicationResponse { /** * The Medi-Span identifier for the medication. */ id: number; /** * RxNorm Concept Unique (RxCUI) identifier of medication. */ ndc?: string | null; /** * RxNorm Concept Unique (RxCUI) identifier of medication. */ rxcui?: number | null; /** * Human readable name of medication. */ name: string; /** * Alternative human readable name of medication. */ displayName?: string; route?: string; doseForm?: string; strength?: string; dispenseUnit?: string; isBrandName: boolean; genericName?: string | null; isOtc: boolean; classification?: string; schedule?: number; stateSchedules?: { name: string; schedule?: number; }[]; isObsolete: boolean; }