Interface JobResult<T>

Job-result document. outputs is a map of output-id → value; the SDK does not parse the value further (it may be a GeoJSON feature collection, a download URL, a binary asset, etc., depending on the process). Adapters narrow T for typed access.

interface JobResult<T> {
    outputs: Record<string, T>;
}

Type Parameters

  • T = unknown

Properties

Properties

outputs: Record<string, T>