UNPKG

@oystehr/sdk

Version:

Oystehr SDK

41 lines (39 loc) 859 B
// AUTOGENERATED -- DO NOT EDIT /** * Success */ export interface ErxCheckPrecheckInteractionsResponse { allergies: { /** * Message describing the interaction. */ message: string; }[]; medications: { /** * Message describing the interaction. */ message: string; /** * Severity level of the interaction. */ severityLevel: 'MajorInteraction' | 'ModerateInteraction' | 'MinorInteraction' | 'Unknown'; /** * List of medications involved in the interaction. */ medications?: { /** * The Medi-Span identifier for the medication. */ id: number; /** * Human readable name of medication. */ name: string; }[]; /** * Indicates if the interaction includes pending medications. */ includesPending: boolean; }[]; }