import * as z from "zod/v3"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type ExtrasWebIp2CountryResponseItem = { /** * The IP address that was checked. */ ipAddress?: string | undefined; /** * The 2 digit ISO code to the country matched to the IP address. Blank if the country was not found. */ iso2?: string | undefined; /** * The 3 digit ISO code to the country matched to the IP address. Blank if the country was not found. */ iso3?: string | undefined; /** * The full name of the country matching the IP address. Blank if the country was not found. */ country?: string | undefined; }; export type ExtrasWebIp2CountryResponse = { items?: Array | undefined; }; /** @internal */ export declare const ExtrasWebIp2CountryResponseItem$inboundSchema: z.ZodType; export declare function extrasWebIp2CountryResponseItemFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ExtrasWebIp2CountryResponse$inboundSchema: z.ZodType; export declare function extrasWebIp2CountryResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=extraswebip2countryresponse.d.ts.map