@oystehr/sdk
Version:
Oystehr SDK
16 lines (15 loc) • 717 B
TypeScript
import { ErxV2MedicationSearchParams, ErxV2MedicationSearchResponse, OystehrClientRequest } from '../..';
import { SDKResource } from '../../client/client';
import { OystehrConfig } from '../../config';
export declare class ErxV2 extends SDKResource {
#private;
constructor(config: OystehrConfig);
/**
* Search for medications. Provide at least one of code or name filters
*/
medicationSearch(params: ErxV2MedicationSearchParams, request?: OystehrClientRequest): Promise<ErxV2MedicationSearchResponse>;
/**
* Search for medications. Provide at least one of code or name filters
*/
medicationSearch(request?: OystehrClientRequest): Promise<ErxV2MedicationSearchResponse>;
}