forked from LeanKit/LeanKit.API.Client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskCard.cs
More file actions
321 lines (291 loc) · 9.4 KB
/
TaskCard.cs
File metadata and controls
321 lines (291 loc) · 9.4 KB
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
namespace LeanKit.Models
{
public class TaskCardListRequest
{
public int? Offset { get; set; }
public int? Limit { get; set; }
}
public class TaskCardListResponse
{
public PageMeta PageMeta { get; set; }
public List<TaskCardListCard> Cards { get; set; }
}
public class TaskCardListCard
{
public long Id { get; set; }
public string Title { get; set; }
public int Index { get; set; }
public long LaneId { get; set; }
public string Color { get; set; }
public List<string> Tags { get; set; }
public int Size { get; set; }
public string Priority { get; set; }
public DateTime? PlannedStart { get; set; }
public DateTime? PlannedFinish { get; set; }
public bool IsDone { get; set; }
public DateTime UpdatedOn { get; set; }
public DateTime MovedOn { get; set; }
public string CustomIconLabel { get; set; }
public BlockedStatusObject BlockedStatus { get; set; }
public CustomIconObject CustomIcon { get; set; }
public CustomHeaderObject CustomHeader { get; set; }
public bool CanView { get; set; }
public long ContainingCardId { get; set; }
public CardTypeObject CardType { get; set; }
public List<UserObject> AssignedUsers { get; set; }
public long? SubscriptionId { get; set; }
public ParentCardObject ParentCard { get; set; }
public ConnectedCardStatsObject ConnectedCardStats { get; set; }
public class UserObject
{
public long Id { get; set; }
public string Avatar { get; set; }
public string FullName { get; set; }
}
public class CustomHeaderObject
{
public string Value { get; set; }
public string Header { get; set; }
public string Url { get; set; }
}
public class BlockedStatusObject
{
public DateTime? Date { get; set; }
public string Reason { get; set; }
public bool IsBlocked { get; set; }
}
public class ParentCardObject
{
public long CardId { get; set; }
public long BoardId { get; set; }
}
public class CardTypeObject
{
public long Id { get; set; }
public string Name { get; set; }
}
public class CardLane
{
public long Id { get; set; }
public string Title { get; set; }
public string Description { get; set; }
public int Index { get; set; }
public int CardLimit { get; set; }
public string LaneClassType { get; set; }
public string LaneType { get; set; }
public string Orientation { get; set; }
}
public class BoardMinimal
{
public long Id { get; set; }
public string Title { get; set; }
public long Version { get; set; }
public bool IsArchived { get; set; }
}
public class CustomIconObject
{
public long Id { get; set; }
public string Title { get; set; }
public string CardColor { get; set; }
public string IconColor { get; set; }
public string IconName { get; set; }
public string IconPath { get; set; }
public string Policy { get; set; }
}
public class CustomIdObject
{
public string Value { get; set; }
public string Prefix { get; set; }
public string Url { get; set; }
}
public class ExternalLink
{
public string Label { get; set; }
public string Url { get; set; }
}
public class TaskBoardObject
{
public long Id { get; set; }
public long Version { get; set; }
}
public class ConnectedCardStatsObject
{
public int StartedCount { get; set; }
public int StartedSize { get; set; }
public int NotStartedCount { get; set; }
public int NotStartedSize { get; set; }
public int CompletedCount { get; set; }
public int CompletedSize { get; set; }
public int BlockedCount { get; set; }
public int TotalCount { get; set; }
public int TotalSize { get; set; }
public DateTime? PlannedStart { get; set; }
public DateTime? PlannedFinish { get; set; }
public DateTime? ActualStart { get; set; }
public DateTime? ActualFinish { get; set; }
public int PastDueCount { get; set; }
public int ProjectedLateCount { get; set; }
}
}
public class TaskCardResponse
{
public long Id { get; set; }
public string Title { get; set; }
public string Description { get; set; }
public int Index { get; set; }
public List<string> Tags { get; set; }
public int Size { get; set; }
public long Version { get; set; }
public string Priority { get; set; }
public DateTime CreatedOn { get; set; }
public DateTime? ArchivedOn { get; set; }
public DateTime? PlannedStart { get; set; }
public DateTime? PlannedFinish { get; set; }
public DateTime? ActualStart { get; set; }
public DateTime? ActualFinish { get; set; }
public DateTime UpdatedOn { get; set; }
public DateTime MovedOn { get; set; }
public string Color { get; set; }
public string IconPath { get; set; }
public BlockedStatusObject BlockedStatus { get; set; }
public BoardMinimal Board { get; set; }
public TaskBoardObject TaskBoard { get; set; }
public CustomIconObject CustomIcon { get; set; }
public CustomIdObject CustomId { get; set; }
public List<ExternalLink> ExternalLinks { get; set; }
public CardLane Lane { get; set; }
public CardType Type { get; set; }
public List<UserObject> AssignedUsers { get; set; }
public UserObject CreatedBy { get; set; }
public UserObject UpdatedBy { get; set; }
public UserObject MovedBy { get; set; }
public UserObject ArchivedBy { get; set; }
public List<Comment> Comments { get; set; }
public List<Attachment> Attachments { get; set; }
public class Comment
{
public long Id { get; set; }
public string Text { get; set; }
public UserObject CreatedBy { get; set; }
public DateTime CreatedOn { get; set; }
}
public class Attachment
{
public long Id { get; set; }
public int AttachmentSize { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public string StorageId { get; set; }
public UserObject CreatedBy { get; set; }
public UserObject ChangedBy { get; set; }
public DateTime CreatedOn { get; set; }
public DateTime UpdatedOn { get; set; }
}
public class UserObject
{
public long Id { get; set; }
public string EmailAddress { get; set; }
public string Avatar { get; set; }
public string FullName { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
}
public class BlockedStatusObject
{
public string Date { get; set; }
public string Reason { get; set; }
public bool IsBlocked { get; set; }
}
public class CardType
{
public long Id { get; set; }
public string Title { get; set; }
public string CardColor { get; set; }
public string IconColor { get; set; }
public string IconName { get; set; }
public string IconPath { get; set; }
}
public class CardLane
{
public long Id { get; set; }
public string Title { get; set; }
public string Description { get; set; }
public int Index { get; set; }
public int CardLimit { get; set; }
public string LaneClassType { get; set; }
public string LaneType { get; set; }
public string Orientation { get; set; }
}
public class BoardMinimal
{
public long Id { get; set; }
public string Title { get; set; }
public long Version { get; set; }
public bool IsArchived { get; set; }
}
public class CustomIconObject
{
public long Id { get; set; }
public string Title { get; set; }
public string CardColor { get; set; }
public string IconColor { get; set; }
public string IconName { get; set; }
public string IconPath { get; set; }
public string Policy { get; set; }
}
public class CustomIdObject
{
public string Value { get; set; }
public string Prefix { get; set; }
public string Url { get; set; }
}
public class ExternalLink
{
public string Label { get; set; }
public string Url { get; set; }
}
public class TaskBoardObject
{
public long Id { get; set; }
public long Version { get; set; }
}
}
public class TaskCardCreateRequest
{
[JsonConverter(typeof(Utils.BigIntConverter))]
public long CardId { get; set; }
[JsonConverter(typeof(Utils.BigIntConverter))]
public long TypeId { get; set; }
public string Title { get; set; }
public string Description { get; set; }
public string LaneTitle { get; set; }
[JsonConverter(typeof(StringEnumConverter))]
public LaneType? LaneType { get; set; }
public int? Index { get; set; }
public int? Size { get; set; }
[JsonConverter(typeof(StringEnumConverter))]
public Priority? Priority { get; set; }
[JsonConverter(typeof(Utils.DateOnlyConverter))]
public DateTime? PlannedStart { get; set; }
[JsonConverter(typeof(Utils.DateOnlyConverter))]
public DateTime? PlannedFinish { get; set; }
public string BlockReason { get; set; }
[JsonConverter(typeof(Utils.BigIntArrayConverter))]
public List<long> AssignedUserIds { get; set; }
public List<string> Tags { get; set; }
public string CustomId { get; set; }
[JsonConverter(typeof(Utils.BigIntConverter))]
public long? CustomIconId { get; set; }
public ExternalLinkObject ExternalLink { get; set; }
public string WipOverrideComment { get; set; }
public class ExternalLinkObject
{
public string Label { get; set; }
public string Url { get; set; }
}
}
}