import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { ErrorT, ErrorT$Outbound } from "./error.js"; import { FieldError, FieldError$Outbound } from "./fielderror.js"; import { SDKValidationError } from "./sdkvalidationerror.js"; /** * An error has occurred, and further details are contained in the response */ export type PaymentsActionResponseBody = ErrorT | FieldError; /** @internal */ export declare const PaymentsActionResponseBody$inboundSchema: z.ZodType; /** @internal */ export type PaymentsActionResponseBody$Outbound = ErrorT$Outbound | FieldError$Outbound; /** @internal */ export declare const PaymentsActionResponseBody$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PaymentsActionResponseBody$ { /** @deprecated use `PaymentsActionResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PaymentsActionResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PaymentsActionResponseBody$Outbound` instead. */ type Outbound = PaymentsActionResponseBody$Outbound; } export declare function paymentsActionResponseBodyToJSON(paymentsActionResponseBody: PaymentsActionResponseBody): string; export declare function paymentsActionResponseBodyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=paymentsaction.d.ts.map