interface Run {
    _links?: any;
    createdDate?: Date;
    finalYaml?: string;
    finishedDate?: Date;
    id?: number;
    name?: string;
    pipeline?: PipelineReference;
    resources?: RunResources;
    result?: RunResult;
    state?: RunState;
    templateParameters?: { [key: string]: any };
    url?: string;
    variables?: { [key: string]: Variable };
}

Hierarchy (View Summary)

Properties

_links?: any
createdDate?: Date
finalYaml?: string
finishedDate?: Date
id?: number
name?: string
resources?: RunResources
result?: RunResult
state?: RunState
templateParameters?: { [key: string]: any }
url?: string
variables?: { [key: string]: Variable }