@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
14 lines (13 loc) • 507 B
TypeScript
import { ShipmentSolutionData } from "../../../interfaces/nested/result/shipment-solution-data";
import { RouteAction } from "./route-action";
import { AgentSolution } from "./agent-solution";
import { Shipment } from "../input/shipment";
export declare class ShipmentSolution {
private readonly raw;
constructor(raw?: ShipmentSolutionData);
getRaw(): ShipmentSolutionData;
getAgentId(): string;
getActions(): RouteAction[];
getAgent(): AgentSolution;
getShipment(): Shipment;
}