forked from syncfusion/ej2-javascript-ui-controls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtask-fields-model.d.ts
163 lines (138 loc) · 2.73 KB
/
task-fields-model.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
import { Property, ChildProperty } from '@syncfusion/ej2-base';
/**
* Interface for a class TaskFields
*/
export interface TaskFieldsModel {
/**
* To map id of task from data source.
*
* @default null
*/
id?: string;
/**
* To map name of task from data source.
*
* @default null
*/
name?: string;
/**
* To map parent id of task from data source.
*
* @default null
*/
parentID?: string;
/**
* To map start date of task from data source.
*
* @default null
*/
startDate?: string;
/**
* To map end date of task from data source.
*
* @default null
*/
endDate?: string;
/**
* To map dependency of task from data source.
*
* @default null
*/
dependency?: string;
/**
* To map progress of task from data source.
*
* @default null
*/
progress?: string;
/**
* To map child of task from data source.
*
* @default null
*/
child?: string;
/**
* To map milestone of task from data source.
*
* @default null
*/
milestone?: string;
/**
* To map duration of task from data source.
*
* @default null
*/
duration?: string;
/**
* To map duration unit of task from data source.
*
*/
durationUnit?: string;
/**
* To map custom css class of task from data source.
*
*/
cssClass?: string;
/**
* To map baseline start date of task from data source.
*
*/
baselineStartDate?: string;
/**
* To map baseline end date of task from data source.
*
*/
baselineEndDate?: string;
/**
* To map assigned resources of task from data source.
*
*/
resourceInfo?: string;
/**
* To map expand status of parent record from data source.
*
*/
expandState?: string;
/**
* To map indicators of task from data source.
*
* @default null
*/
indicators?: string;
/**
* To map notes value of task from data source.
*
* @default null
*/
notes?: string;
/**
* To map work of task from data source.
*
* @default null
*/
work?: string;
/**
* To map schedule mode of task from data source.
*
* @default null
*/
manual?: string;
/**
* To map taskType value of task from data source
*
* @default null
*/
type?: string;
/**
* To map segments details of a task from data source
*
* @default null
*/
segments?: string;
/**
* To map segment id details of a task from data source
*
* @default null
*/
segmentId?: string;
}