import * as z from "zod/v3"; export type CreatePaymentServiceSessionGlobals = { merchantAccountId?: string | undefined; }; export type CreatePaymentServiceSessionRequest = { /** * the ID of the payment service */ paymentServiceId: string; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; requestBody: { [k: string]: any; }; }; /** @internal */ export type CreatePaymentServiceSessionRequest$Outbound = { payment_service_id: string; merchantAccountId?: string | null | undefined; RequestBody: { [k: string]: any; }; }; /** @internal */ export declare const CreatePaymentServiceSessionRequest$outboundSchema: z.ZodType; export declare function createPaymentServiceSessionRequestToJSON(createPaymentServiceSessionRequest: CreatePaymentServiceSessionRequest): string; //# sourceMappingURL=createpaymentservicesession.d.ts.map