UNPKG

@oystehr/sdk

Version:

Oystehr SDK

27 lines (26 loc) 540 B
/** * Success */ export interface ErxSearchPharmaciesResponse { data: { id: number; name: string; address1: string; address2?: string; city: string; state: string; zipCode: string; phone: string; fax?: string; specialties: string[]; ncpdpId: string; }[]; metadata: { hasPrevious: boolean; hasNext: boolean; total: number; currentPage: number; totalPages: number; pageSize: number; }; }