import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type PazeBillingAddress = { /** * Name of the organization or entity at the address. */ name?: string | null | undefined; /** * Line 1 of the address. */ line1: string; /** * Line 2 of the address. */ line2?: string | null | undefined; /** * Line 3 of the address. */ line3?: string | null | undefined; /** * City. */ city: string; /** * State or region. */ state: string; /** * Postal code. */ zip: string; /** * ISO 3166-1 alpha-2 country code. */ countryCode?: string | null | undefined; }; /** @internal */ export declare const PazeBillingAddress$inboundSchema: z.ZodType; export declare function pazeBillingAddressFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=pazebillingaddress.d.ts.map