import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Billing contact information as returned from Apple Pay. * * @remarks * * Refer to [Apple's documentation](https://developer.apple.com/documentation/apple_pay_on_the_web/applepaypaymentcontact) * for more information. */ export type AppleBillingContact = { /** * Address lines 1 and 2 for the contact. */ addressLines?: Array | undefined; /** * The contact's city. */ locality?: string | undefined; /** * The contact's postal code. */ postalCode?: string | undefined; /** * The contact's two-letter state code. */ administrativeArea?: string | undefined; /** * The contact's two-letter ISO 3166 */ countryCode?: string | undefined; }; /** @internal */ export declare const AppleBillingContact$inboundSchema: z.ZodType; /** @internal */ export type AppleBillingContact$Outbound = { addressLines?: Array | undefined; locality?: string | undefined; postalCode?: string | undefined; administrativeArea?: string | undefined; countryCode?: string | undefined; }; /** @internal */ export declare const AppleBillingContact$outboundSchema: z.ZodType; export declare function appleBillingContactToJSON(appleBillingContact: AppleBillingContact): string; export declare function appleBillingContactFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=applebillingcontact.d.ts.map