UNPKG

@lomi./sdk

Version:

Official TypeScript SDK for the lomi. API

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