import * as z from "zod/v3"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type StoreFinderInteractiveRetrieveCoordinatesResponseItem = { /** * The ID for this company. This is not the URN. */ id?: string | undefined; /** * The name of the place. */ place?: string | undefined; /** * The easting coordinate of the location. Represents a distance in meters east from the most south westerly position of the GB mapping grid. */ easting?: number | undefined; /** * The northing coordinate of the location. Represents a distance in meters north from the most south westerly position of the GB mapping grid. */ northing?: number | undefined; /** * The WGS84 latitude coordinate of the location. */ latitude?: number | undefined; /** * The WGS84 longitude coordinate of the location. */ longitude?: number | undefined; }; export type StoreFinderInteractiveRetrieveCoordinatesResponse = { items?: Array | undefined; }; /** @internal */ export declare const StoreFinderInteractiveRetrieveCoordinatesResponseItem$inboundSchema: z.ZodType; export declare function storeFinderInteractiveRetrieveCoordinatesResponseItemFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const StoreFinderInteractiveRetrieveCoordinatesResponse$inboundSchema: z.ZodType; export declare function storeFinderInteractiveRetrieveCoordinatesResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=storefinderinteractiveretrievecoordinatesresponse.d.ts.map