import * as z from "zod/v3"; export type GetPayoutGlobals = { merchantAccountId?: string | undefined; }; export type GetPayoutRequest = { payoutId: string; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; }; /** @internal */ export type GetPayoutRequest$Outbound = { payout_id: string; merchantAccountId?: string | null | undefined; }; /** @internal */ export declare const GetPayoutRequest$outboundSchema: z.ZodType; export declare function getPayoutRequestToJSON(getPayoutRequest: GetPayoutRequest): string; //# sourceMappingURL=getpayout.d.ts.map