This repository was archived by the owner on Sep 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTypes.cs
More file actions
427 lines (377 loc) · 15.1 KB
/
Types.cs
File metadata and controls
427 lines (377 loc) · 15.1 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
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
#nullable disable
using System;
using System.Collections.Generic;
namespace Benchmark.SampleAwsSystemTextJsonTopLevel {
public class User {
//--- Properties ---
public string login { get; set; }
public int id { get; set; }
public string node_id { get; set; }
public string avatar_url { get; set; }
public string gravatar_id { get; set; }
public string url { get; set; }
public string html_url { get; set; }
public string followers_url { get; set; }
public string following_url { get; set; }
public string gists_url { get; set; }
public string starred_url { get; set; }
public string subscriptions_url { get; set; }
public string organizations_url { get; set; }
public string repos_url { get; set; }
public string events_url { get; set; }
public string received_events_url { get; set; }
public string type { get; set; }
public bool site_admin { get; set; }
}
public class Label {
//--- Properties ---
public int id { get; set; }
public string node_id { get; set; }
public string url { get; set; }
public string name { get; set; }
public string description { get; set; }
public string color { get; set; }
public bool @default { get; set; }
}
public class Creator {
//--- Properties ---
public string login { get; set; }
public int id { get; set; }
public string node_id { get; set; }
public string avatar_url { get; set; }
public string gravatar_id { get; set; }
public string url { get; set; }
public string html_url { get; set; }
public string followers_url { get; set; }
public string following_url { get; set; }
public string gists_url { get; set; }
public string starred_url { get; set; }
public string subscriptions_url { get; set; }
public string organizations_url { get; set; }
public string repos_url { get; set; }
public string events_url { get; set; }
public string received_events_url { get; set; }
public string type { get; set; }
public bool site_admin { get; set; }
}
public class Milestone {
//--- Properties ---
public string url { get; set; }
public string html_url { get; set; }
public string labels_url { get; set; }
public int id { get; set; }
public string node_id { get; set; }
public int number { get; set; }
public string state { get; set; }
public string title { get; set; }
public string description { get; set; }
public Creator creator { get; set; }
public int open_issues { get; set; }
public int closed_issues { get; set; }
public DateTime created_at { get; set; }
public DateTime updated_at { get; set; }
public DateTime closed_at { get; set; }
public DateTime due_on { get; set; }
}
public class Assignee {
//--- Properties ---
public string login { get; set; }
public int id { get; set; }
public string node_id { get; set; }
public string avatar_url { get; set; }
public string gravatar_id { get; set; }
public string url { get; set; }
public string html_url { get; set; }
public string followers_url { get; set; }
public string following_url { get; set; }
public string gists_url { get; set; }
public string starred_url { get; set; }
public string subscriptions_url { get; set; }
public string organizations_url { get; set; }
public string repos_url { get; set; }
public string events_url { get; set; }
public string received_events_url { get; set; }
public string type { get; set; }
public bool site_admin { get; set; }
}
public class Assignee2 {
//--- Properties ---
public string login { get; set; }
public int id { get; set; }
public string node_id { get; set; }
public string avatar_url { get; set; }
public string gravatar_id { get; set; }
public string url { get; set; }
public string html_url { get; set; }
public string followers_url { get; set; }
public string following_url { get; set; }
public string gists_url { get; set; }
public string starred_url { get; set; }
public string subscriptions_url { get; set; }
public string organizations_url { get; set; }
public string repos_url { get; set; }
public string events_url { get; set; }
public string received_events_url { get; set; }
public string type { get; set; }
public bool site_admin { get; set; }
}
public class RequestedReviewer {
//--- Properties ---
public string login { get; set; }
public int id { get; set; }
public string node_id { get; set; }
public string avatar_url { get; set; }
public string gravatar_id { get; set; }
public string url { get; set; }
public string html_url { get; set; }
public string followers_url { get; set; }
public string following_url { get; set; }
public string gists_url { get; set; }
public string starred_url { get; set; }
public string subscriptions_url { get; set; }
public string organizations_url { get; set; }
public string repos_url { get; set; }
public string events_url { get; set; }
public string received_events_url { get; set; }
public string type { get; set; }
public bool site_admin { get; set; }
}
public class RequestedTeam {
//--- Properties ---
public int id { get; set; }
public string node_id { get; set; }
public string url { get; set; }
public string html_url { get; set; }
public string name { get; set; }
public string slug { get; set; }
public string description { get; set; }
public string privacy { get; set; }
public string permission { get; set; }
public string members_url { get; set; }
public string repositories_url { get; set; }
public object parent { get; set; }
}
public class Owner {
//--- Properties ---
public string login { get; set; }
public int id { get; set; }
public string node_id { get; set; }
public string avatar_url { get; set; }
public string gravatar_id { get; set; }
public string url { get; set; }
public string html_url { get; set; }
public string followers_url { get; set; }
public string following_url { get; set; }
public string gists_url { get; set; }
public string starred_url { get; set; }
public string subscriptions_url { get; set; }
public string organizations_url { get; set; }
public string repos_url { get; set; }
public string events_url { get; set; }
public string received_events_url { get; set; }
public string type { get; set; }
public bool site_admin { get; set; }
}
public class Permissions {
//--- Properties ---
public bool admin { get; set; }
public bool push { get; set; }
public bool pull { get; set; }
}
public class License {
//--- Properties ---
public string key { get; set; }
public string name { get; set; }
public string url { get; set; }
public string spdx_id { get; set; }
public string node_id { get; set; }
public string html_url { get; set; }
}
public class Repo {
//--- Properties ---
public int id { get; set; }
public string node_id { get; set; }
public string name { get; set; }
public string full_name { get; set; }
public Owner owner { get; set; }
public bool @private { get; set; }
public string html_url { get; set; }
public string description { get; set; }
public bool fork { get; set; }
public string url { get; set; }
public string archive_url { get; set; }
public string assignees_url { get; set; }
public string blobs_url { get; set; }
public string branches_url { get; set; }
public string collaborators_url { get; set; }
public string comments_url { get; set; }
public string commits_url { get; set; }
public string compare_url { get; set; }
public string contents_url { get; set; }
public string contributors_url { get; set; }
public string deployments_url { get; set; }
public string downloads_url { get; set; }
public string events_url { get; set; }
public string forks_url { get; set; }
public string git_commits_url { get; set; }
public string git_refs_url { get; set; }
public string git_tags_url { get; set; }
public string git_url { get; set; }
public string issue_comment_url { get; set; }
public string issue_events_url { get; set; }
public string issues_url { get; set; }
public string keys_url { get; set; }
public string labels_url { get; set; }
public string languages_url { get; set; }
public string merges_url { get; set; }
public string milestones_url { get; set; }
public string notifications_url { get; set; }
public string pulls_url { get; set; }
public string releases_url { get; set; }
public string ssh_url { get; set; }
public string stargazers_url { get; set; }
public string statuses_url { get; set; }
public string subscribers_url { get; set; }
public string subscription_url { get; set; }
public string tags_url { get; set; }
public string teams_url { get; set; }
public string trees_url { get; set; }
public string clone_url { get; set; }
public string mirror_url { get; set; }
public string hooks_url { get; set; }
public string svn_url { get; set; }
public string homepage { get; set; }
public object language { get; set; }
public int forks_count { get; set; }
public int stargazers_count { get; set; }
public int watchers_count { get; set; }
public int size { get; set; }
public string default_branch { get; set; }
public int open_issues_count { get; set; }
public bool is_template { get; set; }
public List<string> topics { get; set; }
public bool has_issues { get; set; }
public bool has_projects { get; set; }
public bool has_wiki { get; set; }
public bool has_pages { get; set; }
public bool has_downloads { get; set; }
public bool archived { get; set; }
public bool disabled { get; set; }
public string visibility { get; set; }
public DateTime pushed_at { get; set; }
public DateTime created_at { get; set; }
public DateTime updated_at { get; set; }
public Permissions permissions { get; set; }
public bool allow_rebase_merge { get; set; }
public object template_repository { get; set; }
public string temp_clone_token { get; set; }
public bool allow_squash_merge { get; set; }
public bool allow_auto_merge { get; set; }
public bool delete_branch_on_merge { get; set; }
public bool allow_merge_commit { get; set; }
public int subscribers_count { get; set; }
public int network_count { get; set; }
public License license { get; set; }
public int forks { get; set; }
public int open_issues { get; set; }
public int watchers { get; set; }
}
public class Head {
//--- Properties ---
public string label { get; set; }
public string @ref { get; set; }
public string sha { get; set; }
public User user { get; set; }
public Repo repo { get; set; }
}
public class Base {
//--- Properties ---
public string label { get; set; }
public string @ref { get; set; }
public string sha { get; set; }
public User user { get; set; }
public Repo repo { get; set; }
}
public class Self {
//--- Properties ---
public string href { get; set; }
}
public class Html {
//--- Properties ---
public string href { get; set; }
}
public class Issue {
//--- Properties ---
public string href { get; set; }
}
public class Comments {
//--- Properties ---
public string href { get; set; }
}
public class ReviewComments {
//--- Properties ---
public string href { get; set; }
}
public class ReviewComment {
//--- Properties ---
public string href { get; set; }
}
public class Commits {
//--- Properties ---
public string href { get; set; }
}
public class Statuses {
//--- Properties ---
public string href { get; set; }
}
public class Links {
//--- Properties ---
public Self self { get; set; }
public Html html { get; set; }
public Issue issue { get; set; }
public Comments comments { get; set; }
public ReviewComments review_comments { get; set; }
public ReviewComment review_comment { get; set; }
public Commits commits { get; set; }
public Statuses statuses { get; set; }
}
public class Root {
//--- Properties ---
public string url { get; set; }
public int id { get; set; }
public string node_id { get; set; }
public string html_url { get; set; }
public string diff_url { get; set; }
public string patch_url { get; set; }
public string issue_url { get; set; }
public string commits_url { get; set; }
public string review_comments_url { get; set; }
public string review_comment_url { get; set; }
public string comments_url { get; set; }
public string statuses_url { get; set; }
public int number { get; set; }
public string state { get; set; }
public bool locked { get; set; }
public string title { get; set; }
public User user { get; set; }
public string body { get; set; }
public List<Label> labels { get; set; }
public Milestone milestone { get; set; }
public string active_lock_reason { get; set; }
public DateTime created_at { get; set; }
public DateTime updated_at { get; set; }
public DateTime closed_at { get; set; }
public DateTime merged_at { get; set; }
public string merge_commit_sha { get; set; }
public Assignee assignee { get; set; }
public List<Assignee> assignees { get; set; }
public List<RequestedReviewer> requested_reviewers { get; set; }
public List<RequestedTeam> requested_teams { get; set; }
public Head head { get; set; }
public Base @base { get; set; }
public Links _links { get; set; }
public string author_association { get; set; }
public object auto_merge { get; set; }
public bool draft { get; set; }
}
}