@paddle/paddle-node-sdk
Version:
A Node.js SDK that you can use to integrate Paddle Billing with applications written in server-side JavaScript.
10 lines (9 loc) • 342 B
TypeScript
import { type CurrencyCode, type PayoutStatus } from '../../enums/index.js';
import { type IPayoutResponse } from '../../types/index.js';
export declare class Payout {
readonly id: string;
readonly status: PayoutStatus;
readonly amount: string;
readonly currencyCode: CurrencyCode;
constructor(payout: IPayoutResponse);
}