import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Provides information about the underlying card. * * @remarks * * Refer to [Apple's documentation](https://developer.apple.com/documentation/apple_pay_on_the_web/applepaypaymenttoken/1916113-paymentmethod) * for more information. */ export type LinkApplePaymentMethod = { /** * A display-friendly discription of the card. */ displayName: string; /** * The card's payment network. */ network: string; /** * The type of card. */ type: string; }; /** @internal */ export declare const LinkApplePaymentMethod$inboundSchema: z.ZodType; /** @internal */ export type LinkApplePaymentMethod$Outbound = { displayName: string; network: string; type: string; }; /** @internal */ export declare const LinkApplePaymentMethod$outboundSchema: z.ZodType; export declare function linkApplePaymentMethodToJSON(linkApplePaymentMethod: LinkApplePaymentMethod): string; export declare function linkApplePaymentMethodFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=linkapplepaymentmethod.d.ts.map