UNPKG

@geoapify/route-planner-sdk

Version:

TypeScript SDK for the Geoapify Route Planner API. Supports route optimization, delivery planning, and timeline visualization in browser and Node.js

16 lines (15 loc) 577 B
import { RouteAction } from "./route-action"; import { AgentPlan } from "./agent-plan"; import { JobData } from "../../../interfaces"; export declare class JobPlan { private readonly jobIndex; private readonly jobInputData; private readonly agentPlan; constructor(jobIndex: number, jobInputData: JobData, agentPlan: AgentPlan | undefined); getAgentId(): string | undefined; getAgentIndex(): number | undefined; getRouteActions(): RouteAction[]; getAgentPlan(): AgentPlan | undefined; getJobInputData(): JobData; getJobIndex(): number; }