Data representation of an information node associated with a build

interface InformationNode {
    fields?: { [key: string]: string };
    lastModifiedBy?: string;
    lastModifiedDate?: Date;
    nodeId?: number;
    parentId?: number;
    type?: string;
}

Properties

fields?: { [key: string]: string }

Fields of the information node

lastModifiedBy?: string

Process or person that last modified this node

lastModifiedDate?: Date

Date this node was last modified

nodeId?: number

Node Id of this information node

parentId?: number

Id of parent node (xml tree)

type?: string

The type of the information node