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.

10 lines (9 loc) 424 B
import type { Payment, PaymentOptions, SearchResponse } from '../../../../types/types.js'; import { PaymentAPI } from '../payment-api.js'; /** * Get Updated Payments * @param this - The Payment API * @param lastUpdatedDate - The last updated date * @returns The Payments */ export declare function getUpdatedPayments(this: PaymentAPI, lastUpdatedDate: Date, options?: PaymentOptions): Promise<SearchResponse<Payment>>;