@oystehr/sdk
Version:
Oystehr SDK
29 lines (27 loc) • 497 B
text/typescript
// AUTOGENERATED -- DO NOT EDIT
/**
* 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;
};
}