import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Method } from "./method.js"; export type TransactionPaymentService = { /** * Always `payment-service`. */ type: "payment-service"; /** * The ID for the payment-service. */ id: string; /** * The definition ID of the service used to process this payment. */ paymentServiceDefinitionId: string; method: Method; /** * The display name for the payment service. */ displayName: string; }; /** @internal */ export declare const TransactionPaymentService$inboundSchema: z.ZodType; export declare function transactionPaymentServiceFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=transactionpaymentservice.d.ts.map