import * as z from "zod/v3"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; import { LocationServicesDistanceFinderNearbyExternalResponseOpeningHours } from "./locationservicesdistancefindernearbyexternalresponseopeninghours.js"; export type LocationServicesDistanceFinderNearbyExternalResponsePointData = { /** * Identifier for the location. */ id?: string | undefined; /** * Name of the location. */ name?: string | undefined; /** * Description of the location for display purposes. */ description?: string | undefined; /** * Address of the location for display purposes. */ address?: string | undefined; country?: string | undefined; /** * The WGS 84 latitude in decimal degrees format. */ latitude?: string | undefined; /** * The WGS 84 longitude in decimal degrees format. */ longitude?: string | undefined; metaInfo?: { [k: string]: string; } | undefined; unstructuredMetaInfo?: { [k: string]: any; } | undefined; openingHours?: LocationServicesDistanceFinderNearbyExternalResponseOpeningHours | undefined; }; /** @internal */ export declare const LocationServicesDistanceFinderNearbyExternalResponsePointData$inboundSchema: z.ZodType; export declare function locationServicesDistanceFinderNearbyExternalResponsePointDataFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=locationservicesdistancefindernearbyexternalresponsepointdata.d.ts.map