/**
 * 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;
    };
}
