import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare enum PaymentResponsePendingTag { Pending = "pending" } export declare enum PaymentResponsePendingStatus { AwaitingUserConfirmation = "awaiting_user_confirmation" } export declare enum Action { Redirect = "redirect" } export type PaymentResponsePending = { dotTag: PaymentResponsePendingTag; id?: string | undefined; status: PaymentResponsePendingStatus; action: Action; url: string; }; /** @internal */ export declare const PaymentResponsePendingTag$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PaymentResponsePendingTag$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PaymentResponsePendingTag$ { /** @deprecated use `PaymentResponsePendingTag$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum; /** @deprecated use `PaymentResponsePendingTag$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum; } /** @internal */ export declare const PaymentResponsePendingStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PaymentResponsePendingStatus$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PaymentResponsePendingStatus$ { /** @deprecated use `PaymentResponsePendingStatus$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum; /** @deprecated use `PaymentResponsePendingStatus$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum; } /** @internal */ export declare const Action$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const Action$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Action$ { /** @deprecated use `Action$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum; /** @deprecated use `Action$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum; } /** @internal */ export declare const PaymentResponsePending$inboundSchema: z.ZodType; /** @internal */ export type PaymentResponsePending$Outbound = { ".tag": string; id?: string | undefined; status: string; action: string; url: string; }; /** @internal */ export declare const PaymentResponsePending$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 PaymentResponsePending$ { /** @deprecated use `PaymentResponsePending$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PaymentResponsePending$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PaymentResponsePending$Outbound` instead. */ type Outbound = PaymentResponsePending$Outbound; } export declare function paymentResponsePendingToJSON(paymentResponsePending: PaymentResponsePending): string; export declare function paymentResponsePendingFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=paymentresponsepending.d.ts.map