UNPKG

@lomray/microservice-payment-stripe

Version:

Stripe payment microservice based on NodeJS & inverted json.

17 lines (16 loc) 620 B
import PayoutMethodType from "../../constants/payout-method-type.js"; import { IInstantPayoutParams } from "../../services/payment-gateway/stripe.js"; declare class CreateInstantPayoutInput implements IInstantPayoutParams { userId: string; amount: number; entityId?: string; payoutMethodId?: string; payoutMethodType?: PayoutMethodType; } /** * Create instant payout */ declare const instantPayout: import("@lomray/microservice-helpers/services/endpoint").IReturnWithMeta<never, CreateInstantPayoutInput, Record<string, any>, { isInstantiated: boolean; }>; export { instantPayout as default };