import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type LocationServicesLocationManagementDeleteListOrPointGlobals = { source?: string | undefined; }; export type DeleteListOrPointRequest = { /** * The key you want to use to authenticate with the service (you can request we create one for you or create one in your [account section](https://account.loqate.com/account#/)). */ key?: string | undefined; /** * The unique GUID for a given list. */ listId?: string | undefined; /** * The unique GUID for a given location. */ locationID?: string | undefined; }; /** * Success */ export type LocationServicesLocationManagementDeleteListOrPointExternalEndpointResponse = { /** * A message detailing how the operation performed. */ message?: string | undefined; /** * The GUID of the list or location deleted. */ id?: string | undefined; }; /** @internal */ export type DeleteListOrPointRequest$Outbound = { Key: string; listId?: string | undefined; locationID?: string | undefined; }; /** @internal */ export declare const DeleteListOrPointRequest$outboundSchema: z.ZodType; export declare function deleteListOrPointRequestToJSON(deleteListOrPointRequest: DeleteListOrPointRequest): string; /** @internal */ export declare const LocationServicesLocationManagementDeleteListOrPointExternalEndpointResponse$inboundSchema: z.ZodType; export declare function locationServicesLocationManagementDeleteListOrPointExternalEndpointResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=locationserviceslocationmanagementdeletelistorpoint.d.ts.map