import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare enum PaymentMethodAffirmTag { Affirm = "affirm" } export type PaymentMethodAffirmOutput = { dotTag: PaymentMethodAffirmTag; }; export type PaymentMethodAffirm = { dotTag: PaymentMethodAffirmTag; /** * Return URL to return to after payment completion in Affirm. */ returnUrl: string; }; /** @internal */ export declare const PaymentMethodAffirmTag$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PaymentMethodAffirmTag$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 PaymentMethodAffirmTag$ { /** @deprecated use `PaymentMethodAffirmTag$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum; /** @deprecated use `PaymentMethodAffirmTag$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum; } /** @internal */ export declare const PaymentMethodAffirmOutput$inboundSchema: z.ZodType; /** @internal */ export type PaymentMethodAffirmOutput$Outbound = { ".tag": string; }; /** @internal */ export declare const PaymentMethodAffirmOutput$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 PaymentMethodAffirmOutput$ { /** @deprecated use `PaymentMethodAffirmOutput$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PaymentMethodAffirmOutput$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PaymentMethodAffirmOutput$Outbound` instead. */ type Outbound = PaymentMethodAffirmOutput$Outbound; } export declare function paymentMethodAffirmOutputToJSON(paymentMethodAffirmOutput: PaymentMethodAffirmOutput): string; export declare function paymentMethodAffirmOutputFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PaymentMethodAffirm$inboundSchema: z.ZodType; /** @internal */ export type PaymentMethodAffirm$Outbound = { ".tag": string; return_url: string; }; /** @internal */ export declare const PaymentMethodAffirm$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 PaymentMethodAffirm$ { /** @deprecated use `PaymentMethodAffirm$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PaymentMethodAffirm$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PaymentMethodAffirm$Outbound` instead. */ type Outbound = PaymentMethodAffirm$Outbound; } export declare function paymentMethodAffirmToJSON(paymentMethodAffirm: PaymentMethodAffirm): string; export declare function paymentMethodAffirmFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=paymentmethodaffirmoutput.d.ts.map