import * as z from "zod/v3"; export type GetPaymentServiceGlobals = { merchantAccountId?: string | undefined; }; export type GetPaymentServiceRequest = { /** * the ID of the payment service */ paymentServiceId: string; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; }; /** @internal */ export type GetPaymentServiceRequest$Outbound = { payment_service_id: string; merchantAccountId?: string | null | undefined; }; /** @internal */ export declare const GetPaymentServiceRequest$outboundSchema: z.ZodType; export declare function getPaymentServiceRequestToJSON(getPaymentServiceRequest: GetPaymentServiceRequest): string; //# sourceMappingURL=getpaymentservice.d.ts.map