import * as z from "zod/v3"; import * as components from "../components/index.js"; export type CreatePaymentServiceGlobals = { merchantAccountId?: string | undefined; }; export type CreatePaymentServiceRequest = { /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; paymentServiceCreate: components.PaymentServiceCreate; }; /** @internal */ export type CreatePaymentServiceRequest$Outbound = { merchantAccountId?: string | null | undefined; PaymentServiceCreate: components.PaymentServiceCreate$Outbound; }; /** @internal */ export declare const CreatePaymentServiceRequest$outboundSchema: z.ZodType; export declare function createPaymentServiceRequestToJSON(createPaymentServiceRequest: CreatePaymentServiceRequest): string; //# sourceMappingURL=createpaymentservice.d.ts.map