import * as z from "zod/v3"; export type DeletePaymentServiceGlobals = { merchantAccountId?: string | undefined; }; export type DeletePaymentServiceRequest = { /** * 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 DeletePaymentServiceRequest$Outbound = { payment_service_id: string; merchantAccountId?: string | null | undefined; }; /** @internal */ export declare const DeletePaymentServiceRequest$outboundSchema: z.ZodType; export declare function deletePaymentServiceRequestToJSON(deletePaymentServiceRequest: DeletePaymentServiceRequest): string; //# sourceMappingURL=deletepaymentservice.d.ts.map