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.

9 lines (8 loc) 343 B
import type { Payment, PaymentOptions, SearchResponse } from '../../../../types/types.js'; import { PaymentAPI } from '../payment-api.js'; /** * Get All Payments * @param this - The Payment API * @returns The Payments */ export declare function getAllPayments(this: PaymentAPI, options?: PaymentOptions): Promise<SearchResponse<Payment>>;