UNPKG

@lomi./sdk

Version:

Official TypeScript SDK for the lomi. API

44 lines 1.33 kB
import type { installment_payments } from '../models/installment_payments.js'; import type { CancelablePromise } from '../core/CancelablePromise.js'; export declare class InstallmentPaymentService { /** * List installment_payments * Retrieve a paginated list of installment_payments * @returns any Successful response * @throws ApiError */ static getInstallmentPayments({ limit, offset, sort, }: { /** * Maximum number of items to return */ limit?: number; /** * Number of items to skip */ offset?: number; /** * Sort order (e.g., created_at:desc) */ sort?: string; }): CancelablePromise<{ data?: Array<installment_payments>; pagination?: { limit?: number; offset?: number; total?: number; }; }>; /** * Get installment_payment * Retrieve a specific installment_payment by ID * @returns installment_payments Successful response * @throws ApiError */ static getInstallmentPayments1({ paymentId, }: { /** * The installment_payment ID */ paymentId: string; }): CancelablePromise<installment_payments>; } //# sourceMappingURL=InstallmentPaymentService.d.ts.map