UNPKG

@lomi./sdk

Version:

Official TypeScript SDK for the lomi. API

44 lines 1.29 kB
import type { customer_invoices } from '../models/customer_invoices.js'; import type { CancelablePromise } from '../core/CancelablePromise.js'; export declare class CustomerInvoiceService { /** * List customer_invoices * Retrieve a paginated list of customer_invoices * @returns any Successful response * @throws ApiError */ static getCustomerInvoices({ 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<customer_invoices>; pagination?: { limit?: number; offset?: number; total?: number; }; }>; /** * Get customer_invoice * Retrieve a specific customer_invoice by ID * @returns customer_invoices Successful response * @throws ApiError */ static getCustomerInvoices1({ invoiceId, }: { /** * The customer_invoice ID */ invoiceId: string; }): CancelablePromise<customer_invoices>; } //# sourceMappingURL=CustomerInvoiceService.d.ts.map