summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/columns/columns-edit-component/edit-drill-down-link/drill-down-model.ts
blob: ffff52e989ab35a2c8d34d15abf93cbb873e319d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
export class DrillDownModel {
    id: string;
    name: string;
    fixedValueData: any;
    valueOfColumnData: any;
    valueOfFormFieldData: any;
    selected: string;
    radioButtonValue: string;
    columnID: string;

    constructor(id: string, name: string, radioButtonValue: string) {
        this.id = id;
        this.name = name;
        this.selected = '';
        this.fixedValueData = '';
        this.valueOfColumnData = '';
        this.valueOfFormFieldData = '';
        this.radioButtonValue = radioButtonValue;
        this.columnID = '';

    }
}