import * as z from "zod/v3"; import * as components from "../components/index.js"; export type UpdatePaymentServiceGlobals = { merchantAccountId?: string | undefined; }; export type UpdatePaymentServiceRequest = { /** * the ID of the payment service */ paymentServiceId: string; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; paymentServiceUpdate: components.PaymentServiceUpdate; }; /** @internal */ export type UpdatePaymentServiceRequest$Outbound = { payment_service_id: string; merchantAccountId?: string | null | undefined; PaymentServiceUpdate: components.PaymentServiceUpdate$Outbound; }; /** @internal */ export declare const UpdatePaymentServiceRequest$outboundSchema: z.ZodType; export declare function updatePaymentServiceRequestToJSON(updatePaymentServiceRequest: UpdatePaymentServiceRequest): string; //# sourceMappingURL=updatepaymentservice.d.ts.map