import * as z from "zod/v3"; import { LocationServicesDistanceFinderNearbyOpeningHours, LocationServicesDistanceFinderNearbyOpeningHours$Outbound } from "./locationservicesdistancefindernearbyopeninghours.js"; export type LocationServicesDistanceFinderNearbyPointData = { /** * Identifier for the location. This must be unique for each location provided within the request. */ 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?: LocationServicesDistanceFinderNearbyOpeningHours | undefined; }; /** @internal */ export type LocationServicesDistanceFinderNearbyPointData$Outbound = { Id?: string | undefined; Name?: string | undefined; Description?: string | undefined; Address?: string | undefined; Country?: string | undefined; Latitude?: string | undefined; Longitude?: string | undefined; MetaInfo?: { [k: string]: string; } | undefined; UnstructuredMetaInfo?: { [k: string]: any; } | undefined; OpeningHours?: LocationServicesDistanceFinderNearbyOpeningHours$Outbound | undefined; }; /** @internal */ export declare const LocationServicesDistanceFinderNearbyPointData$outboundSchema: z.ZodType; export declare function locationServicesDistanceFinderNearbyPointDataToJSON(locationServicesDistanceFinderNearbyPointData: LocationServicesDistanceFinderNearbyPointData): string; //# sourceMappingURL=locationservicesdistancefindernearbypointdata.d.ts.map