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.
26 lines (25 loc) • 721 B
TypeScript
import type { Payment, Query } from '../../../types/types.js';
import { BaseQueryBuilder } from '../common/base-query-builder.js';
/**
* The Payment Query Builder
*/
export declare class PaymentQueryBuilder extends BaseQueryBuilder<Payment> {
/**
* Constructor
* @param endpoint - The Endpoint
* @param baseQuery - The Base Query
*/
constructor(endpoint: string, baseQuery: Query);
/**
* Where Due Date
* @param date - The due date
* @returns The Query Builder
*/
whereDueDate(date: Date): this;
/**
* Where Customer ID
* @param customerId - The customer ID
* @returns The Query Builder
*/
whereCustomerId(customerId: string): this;
}