import * as z from "zod/v3"; import { MoovError } from "./mooverror.js"; export type LinkApplePayErrorData = { /** * Describes an error that wasn't attributable to a single request field. */ error?: string | undefined; /** * Describes an error within the `token.paymentData` request field. */ paymentData?: string | undefined; /** * Describes an error within the `token.paymentMethod` request field. */ paymentMethod?: string | undefined; /** * Describes an error within the `token.transactionIdentifier` request field. */ transactionIdentifier?: string | undefined; }; export declare class LinkApplePayError extends MoovError { /** * Describes an error that wasn't attributable to a single request field. */ error?: string | undefined; /** * Describes an error within the `token.paymentData` request field. */ paymentData?: string | undefined; /** * Describes an error within the `token.paymentMethod` request field. */ paymentMethod?: string | undefined; /** * Describes an error within the `token.transactionIdentifier` request field. */ transactionIdentifier?: string | undefined; /** The original data that was passed to this error instance. */ data$: LinkApplePayErrorData; constructor(err: LinkApplePayErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const LinkApplePayError$inboundSchema: z.ZodType; /** @internal */ export type LinkApplePayError$Outbound = { error?: string | undefined; paymentData?: string | undefined; paymentMethod?: string | undefined; transactionIdentifier?: string | undefined; }; /** @internal */ export declare const LinkApplePayError$outboundSchema: z.ZodType; //# sourceMappingURL=linkapplepayerror.d.ts.map