import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type PayoutPaymentService = { /** * Always `payment-service`. */ type: "payment-service"; /** * The ID for the payout service. */ id?: string | null | undefined; /** * Always `card`. */ method: "card"; /** * The ID of the connection used for this payout. */ paymentServiceDefinitionId: string; /** * The display name of the connection used for this payout. */ displayName?: string | null | undefined; }; /** @internal */ export declare const PayoutPaymentService$inboundSchema: z.ZodType; export declare function payoutPaymentServiceFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=payoutpaymentservice.d.ts.map