Interface LineageResponse

interface LineageResponse {
    nodes: {
        [lsid: string]: LineageNode;
    };
    seed: string;
    seeds: string[];
}

Properties

Properties

nodes: {
    [lsid: string]: LineageNode;
}

Object containing all lineage nodes in this lineage result. Keyed by node LSID.

Type declaration

seed: string

When request is made with "lsid" option the response will include a singular "seed".

Deprecated

since 19.3. Use "seeds" instead.

seeds: string[]

LSID "seeds" for this lineage result.

Generated using TypeDoc