UNPKG

quickbooks-api

Version:

A modular TypeScript SDK for seamless integration with Intuit QuickBooks APIs. Provides robust authentication handling and future-ready foundation for accounting, payments, and commerce operations.

11 lines (10 loc) 467 B
import type { Payment, PaymentOptions, SearchResponse } from '../../../../types/types.js'; import { PaymentAPI } from '../payment-api.js'; /** * Get Payments for a Date Range * @param this - The Payment API * @param startDate - The start date * @param endDate - The end date * @returns The Payments */ export declare function getPaymentsForDateRange(this: PaymentAPI, startDate: Date, endDate: Date, options?: PaymentOptions): Promise<SearchResponse<Payment>>;