Interface ReportPointOfViewFactSheetNode

A Fact Sheet result node returned by lx.getAllFactSheets().

The fixed fields (id, type, category, description) are always present. Additional dynamic keys correspond to the AttributeDescription entries passed to getAllFactSheets() — each is indexed by the name property of the descriptor (e.g. if you passed { type: 'field', name: 'bizCrit', field: 'businessCriticality', ... }, the value is at node['bizCrit']).

interface ReportPointOfViewFactSheetNode {
    category: string;
    description: string;
    id: string;
    type: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

category: string
description: string
id: string
type: string

Generated using TypeDoc