@oystehr/sdk
Version:
Oystehr SDK
33 lines (31 loc) • 685 B
text/typescript
// AUTOGENERATED -- DO NOT EDIT
/**
* Success
*/
export type ErxCheckMedicationInteractionsResponse = {
/**
* 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;
}[];