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) 367 B
import type { Payment, PaymentOptions } from '../../../../types/types.js'; import { PaymentAPI } from '../payment-api.js'; /** * Get Payment by ID * @param this - The Payment API * @param id - The ID of the payment * @returns The Payment */ export declare function getPaymentById(this: PaymentAPI, id: string, options?: PaymentOptions): Promise<Payment | null>;