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
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
#![allow(non_camel_case_types)]
#![allow(unused_imports)]
use serde::de::{value, Deserializer, IntoDeserializer};
use serde::{Deserialize, Serialize, Serializer};
use std::str::FromStr;
#[doc = "Comment on an artifact like Work Item or Wiki, etc."]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Default)]
pub struct Comment {
#[serde(flatten)]
pub comment_resource_reference: CommentResourceReference,
#[doc = "The id of the artifact this comment belongs to"]
#[serde(
rename = "artifactId",
default,
skip_serializing_if = "Option::is_none"
)]
pub artifact_id: Option<String>,
#[doc = ""]
#[serde(rename = "createdBy", default, skip_serializing_if = "Option::is_none")]
pub created_by: Option<IdentityRef>,
#[doc = "The creation date of the comment."]
#[serde(
rename = "createdDate",
default,
with = "crate::date_time::rfc3339::option"
)]
pub created_date: Option<time::OffsetDateTime>,
#[doc = "The id assigned to the comment."]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub id: Option<i32>,
#[doc = "Indicates if the comment has been deleted."]
#[serde(rename = "isDeleted", default, skip_serializing_if = "Option::is_none")]
pub is_deleted: Option<bool>,
#[doc = "The mentions of the comment."]
#[serde(
default,
skip_serializing_if = "Vec::is_empty",
deserialize_with = "crate::serde::deserialize_null_default"
)]
pub mentions: Vec<CommentMention>,
#[doc = ""]
#[serde(
rename = "modifiedBy",
default,
skip_serializing_if = "Option::is_none"
)]
pub modified_by: Option<IdentityRef>,
#[doc = "The last modification date of the comment."]
#[serde(
rename = "modifiedDate",
default,
with = "crate::date_time::rfc3339::option"
)]
pub modified_date: Option<time::OffsetDateTime>,
#[doc = "The comment id of the parent comment, if any"]
#[serde(rename = "parentId", default, skip_serializing_if = "Option::is_none")]
pub parent_id: Option<i32>,
#[doc = "The reactions on the comment."]
#[serde(
default,
skip_serializing_if = "Vec::is_empty",
deserialize_with = "crate::serde::deserialize_null_default"
)]
pub reactions: Vec<CommentReaction>,
#[doc = "The rendered text of the comment"]
#[serde(
rename = "renderedText",
default,
skip_serializing_if = "Option::is_none"
)]
pub rendered_text: Option<String>,
#[doc = "Represents a list of comments."]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub replies: Option<CommentList>,
#[doc = "Indicates the current state of the comment"]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub state: Option<comment::State>,
#[doc = "The plaintext/markdown version of the comment"]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub text: Option<String>,
#[doc = "The current version of the comment"]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub version: Option<i32>,
}
impl Comment {
pub fn new() -> Self {
Self::default()
}
}
pub mod comment {
use super::*;
#[doc = "Indicates the current state of the comment"]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub enum State {
#[serde(rename = "active")]
Active,
#[serde(rename = "resolved")]
Resolved,
#[serde(rename = "closed")]
Closed,
}
}
#[doc = "Represents an attachment to a comment."]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Default)]
pub struct CommentAttachment {
#[serde(flatten)]
pub comment_resource_reference: CommentResourceReference,
#[doc = ""]
#[serde(rename = "createdBy", default, skip_serializing_if = "Option::is_none")]
pub created_by: Option<IdentityRef>,
#[doc = "The creation date of the attachment."]
#[serde(
rename = "createdDate",
default,
with = "crate::date_time::rfc3339::option"
)]
pub created_date: Option<time::OffsetDateTime>,
#[doc = "Unique Id of the attachment."]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub id: Option<String>,
}
impl CommentAttachment {
pub fn new() -> Self {
Self::default()
}
}
#[doc = "Represents a request to create a work item comment."]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Default)]
pub struct CommentCreateParameters {
#[doc = "Optional CommentId of the parent in order to add a reply for an existing comment"]
#[serde(rename = "parentId", default, skip_serializing_if = "Option::is_none")]
pub parent_id: Option<i32>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub text: Option<String>,
}
impl CommentCreateParameters {
pub fn new() -> Self {
Self::default()
}
}
#[doc = "Represents a list of comments."]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Default)]
pub struct CommentList {
#[serde(flatten)]
pub comment_resource_reference: CommentResourceReference,
#[doc = "List of comments in the current batch."]
#[serde(
default,
skip_serializing_if = "Vec::is_empty",
deserialize_with = "crate::serde::deserialize_null_default"
)]
pub comments: Vec<Comment>,
#[doc = "A string token that can be used to retrieving next page of comments if available. Otherwise null."]
#[serde(
rename = "continuationToken",
default,
skip_serializing_if = "Option::is_none"
)]
pub continuation_token: Option<String>,
#[doc = "The count of comments in the current batch."]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub count: Option<i32>,
#[doc = "Uri to the next page of comments if it is available. Otherwise null."]
#[serde(rename = "nextPage", default, skip_serializing_if = "Option::is_none")]
pub next_page: Option<String>,
#[doc = "Total count of comments on a work item."]
#[serde(
rename = "totalCount",
default,
skip_serializing_if = "Option::is_none"
)]
pub total_count: Option<i32>,
}
impl CommentList {
pub fn new() -> Self {
Self::default()
}
}
#[doc = "Contains information about various artifacts mentioned in the comment"]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Default)]
pub struct CommentMention {
#[serde(flatten)]
pub comment_resource_reference: CommentResourceReference,
#[doc = "Id of the artifact this mention belongs to"]
#[serde(
rename = "artifactId",
default,
skip_serializing_if = "Option::is_none"
)]
pub artifact_id: Option<String>,
#[doc = "Id of the comment associated with this mention. Nullable to support legacy mentions which can potentially have null commentId"]
#[serde(rename = "commentId", default, skip_serializing_if = "Option::is_none")]
pub comment_id: Option<i32>,
#[doc = "Value of the mentioned artifact. Expected Value varies by CommentMentionType: Person: VSID associated with the identity Work Item: ID of the work item Pull Request: ID of the Pull Request"]
#[serde(
rename = "mentionedArtifact",
default,
skip_serializing_if = "Option::is_none"
)]
pub mentioned_artifact: Option<String>,
#[doc = "The context which represent where this mentioned was parsed from"]
#[serde(rename = "type", default, skip_serializing_if = "Option::is_none")]
pub type_: Option<comment_mention::Type>,
}
impl CommentMention {
pub fn new() -> Self {
Self::default()
}
}
pub mod comment_mention {
use super::*;
#[doc = "The context which represent where this mentioned was parsed from"]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub enum Type {
#[serde(rename = "person")]
Person,
#[serde(rename = "workItem")]
WorkItem,
#[serde(rename = "pullRequest")]
PullRequest,
}
}
#[doc = "Contains information about comment reaction for a particular reaction type."]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Default)]
pub struct CommentReaction {
#[serde(flatten)]
pub comment_resource_reference: CommentResourceReference,
#[doc = "The id of the comment this reaction belongs to."]
#[serde(rename = "commentId", default, skip_serializing_if = "Option::is_none")]
pub comment_id: Option<i32>,
#[doc = "Total number of reactions for the CommentReactionType."]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub count: Option<i32>,
#[doc = "Flag to indicate if the current user has engaged on this particular EngagementType (e.g. if they liked the associated comment)."]
#[serde(
rename = "isCurrentUserEngaged",
default,
skip_serializing_if = "Option::is_none"
)]
pub is_current_user_engaged: Option<bool>,
#[doc = "Type of the reaction."]
#[serde(rename = "type", default, skip_serializing_if = "Option::is_none")]
pub type_: Option<comment_reaction::Type>,
}
impl CommentReaction {
pub fn new() -> Self {
Self::default()
}
}
pub mod comment_reaction {
use super::*;
#[doc = "Type of the reaction."]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub enum Type {
#[serde(rename = "like")]
Like,
#[serde(rename = "dislike")]
Dislike,
#[serde(rename = "heart")]
Heart,
#[serde(rename = "hooray")]
Hooray,
#[serde(rename = "smile")]
Smile,
#[serde(rename = "confused")]
Confused,
}
}
#[doc = "Base class for comment resource references"]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Default)]
pub struct CommentResourceReference {
#[serde(default, skip_serializing_if = "Option::is_none")]
pub url: Option<String>,
}
impl CommentResourceReference {
pub fn new() -> Self {
Self::default()
}
}
#[doc = "Represents a request to update a comment."]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Default)]
pub struct CommentUpdateParameters {
#[doc = "Set the current state of the comment"]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub state: Option<comment_update_parameters::State>,
#[doc = "The updated text of the comment"]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub text: Option<String>,
}
impl CommentUpdateParameters {
pub fn new() -> Self {
Self::default()
}
}
pub mod comment_update_parameters {
use super::*;
#[doc = "Set the current state of the comment"]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub enum State {
#[serde(rename = "active")]
Active,
#[serde(rename = "resolved")]
Resolved,
#[serde(rename = "closed")]
Closed,
}
}
#[doc = ""]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Default)]
pub struct GitRepository {
#[doc = "The class to represent a collection of REST reference links."]
#[serde(rename = "_links", default, skip_serializing_if = "Option::is_none")]
pub links: Option<ReferenceLinks>,
#[serde(
rename = "defaultBranch",
default,
skip_serializing_if = "Option::is_none"
)]
pub default_branch: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub id: Option<String>,
#[doc = "True if the repository is disabled. False otherwise."]
#[serde(
rename = "isDisabled",
default,
skip_serializing_if = "Option::is_none"
)]
pub is_disabled: Option<bool>,
#[doc = "True if the repository was created as a fork."]
#[serde(rename = "isFork", default, skip_serializing_if = "Option::is_none")]
pub is_fork: Option<bool>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub name: Option<String>,
#[doc = ""]
#[serde(
rename = "parentRepository",
default,
skip_serializing_if = "Option::is_none"
)]
pub parent_repository: Option<GitRepositoryRef>,
#[doc = ""]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub project: Option<TeamProjectReference>,
#[serde(rename = "remoteUrl", default, skip_serializing_if = "Option::is_none")]
pub remote_url: Option<String>,
#[doc = "Compressed size (bytes) of the repository."]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub size: Option<i64>,
#[serde(rename = "sshUrl", default, skip_serializing_if = "Option::is_none")]
pub ssh_url: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub url: Option<String>,
#[serde(
rename = "validRemoteUrls",
default,
skip_serializing_if = "Vec::is_empty",
deserialize_with = "crate::serde::deserialize_null_default"
)]
pub valid_remote_urls: Vec<String>,
#[serde(rename = "webUrl", default, skip_serializing_if = "Option::is_none")]
pub web_url: Option<String>,
}
impl GitRepository {
pub fn new() -> Self {
Self::default()
}
}
#[doc = ""]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Default)]
pub struct GitRepositoryRef {
#[doc = ""]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub collection: Option<TeamProjectCollectionReference>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub id: Option<String>,
#[doc = "True if the repository was created as a fork"]
#[serde(rename = "isFork", default, skip_serializing_if = "Option::is_none")]
pub is_fork: Option<bool>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub name: Option<String>,
#[doc = ""]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub project: Option<TeamProjectReference>,
#[serde(rename = "remoteUrl", default, skip_serializing_if = "Option::is_none")]
pub remote_url: Option<String>,
#[serde(rename = "sshUrl", default, skip_serializing_if = "Option::is_none")]
pub ssh_url: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub url: Option<String>,
}
impl GitRepositoryRef {
pub fn new() -> Self {
Self::default()
}
}
#[doc = ""]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Default)]
pub struct GitVersionDescriptor {
#[doc = "Version string identifier (name of tag/branch, SHA1 of commit)"]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub version: Option<String>,
#[doc = "Version options - Specify additional modifiers to version (e.g Previous)"]
#[serde(
rename = "versionOptions",
default,
skip_serializing_if = "Option::is_none"
)]
pub version_options: Option<git_version_descriptor::VersionOptions>,
#[doc = "Version type (branch, tag, or commit). Determines how Id is interpreted"]
#[serde(
rename = "versionType",
default,
skip_serializing_if = "Option::is_none"
)]
pub version_type: Option<git_version_descriptor::VersionType>,
}
impl GitVersionDescriptor {
pub fn new() -> Self {
Self::default()
}
}
pub mod git_version_descriptor {
use super::*;
#[doc = "Version options - Specify additional modifiers to version (e.g Previous)"]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub enum VersionOptions {
#[serde(rename = "none")]
None,
#[serde(rename = "previousChange")]
PreviousChange,
#[serde(rename = "firstParent")]
FirstParent,
}
#[doc = "Version type (branch, tag, or commit). Determines how Id is interpreted"]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub enum VersionType {
#[serde(rename = "branch")]
Branch,
#[serde(rename = "tag")]
Tag,
#[serde(rename = "commit")]
Commit,
}
}
#[doc = ""]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Default)]
pub struct GraphSubjectBase {
#[doc = "Links"]
#[serde(rename = "_links", default, skip_serializing_if = "Option::is_none")]
pub links: Option<serde_json::Value>,
#[doc = "The descriptor is the primary way to reference the graph subject while the system is running. This field will uniquely identify the same graph subject across both Accounts and Organizations."]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub descriptor: Option<String>,
#[doc = "This is the non-unique display name of the graph subject. To change this field, you must alter its value in the source provider."]
#[serde(
rename = "displayName",
default,
skip_serializing_if = "Option::is_none"
)]
pub display_name: Option<String>,
#[doc = "This url is the full route to the source resource of this graph subject."]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub url: Option<String>,
}
impl GraphSubjectBase {
pub fn new() -> Self {
Self::default()
}
}
#[doc = ""]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct IdentityRef {
#[serde(flatten)]
pub graph_subject_base: GraphSubjectBase,
#[doc = "Deprecated - Can be retrieved by querying the Graph user referenced in the \"self\" entry of the IdentityRef \"_links\" dictionary"]
#[serde(
rename = "directoryAlias",
default,
skip_serializing_if = "Option::is_none"
)]
pub directory_alias: Option<String>,
pub id: String,
#[doc = "Deprecated - Available in the \"avatar\" entry of the IdentityRef \"_links\" dictionary"]
#[serde(rename = "imageUrl", default, skip_serializing_if = "Option::is_none")]
pub image_url: Option<String>,
#[doc = "Deprecated - Can be retrieved by querying the Graph membership state referenced in the \"membershipState\" entry of the GraphUser \"_links\" dictionary"]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub inactive: Option<bool>,
#[doc = "Deprecated - Can be inferred from the subject type of the descriptor (Descriptor.IsAadUserType/Descriptor.IsAadGroupType)"]
#[serde(
rename = "isAadIdentity",
default,
skip_serializing_if = "Option::is_none"
)]
pub is_aad_identity: Option<bool>,
#[doc = "Deprecated - Can be inferred from the subject type of the descriptor (Descriptor.IsGroupType)"]
#[serde(
rename = "isContainer",
default,
skip_serializing_if = "Option::is_none"
)]
pub is_container: Option<bool>,
#[serde(
rename = "isDeletedInOrigin",
default,
skip_serializing_if = "Option::is_none"
)]
pub is_deleted_in_origin: Option<bool>,
#[doc = "Deprecated - not in use in most preexisting implementations of ToIdentityRef"]
#[serde(
rename = "profileUrl",
default,
skip_serializing_if = "Option::is_none"
)]
pub profile_url: Option<String>,
#[doc = "Deprecated - use Domain+PrincipalName instead"]
#[serde(rename = "uniqueName")]
pub unique_name: String,
}
impl IdentityRef {
pub fn new(id: String, unique_name: String) -> Self {
Self {
graph_subject_base: GraphSubjectBase::default(),
directory_alias: None,
id,
image_url: None,
inactive: None,
is_aad_identity: None,
is_container: None,
is_deleted_in_origin: None,
profile_url: None,
unique_name,
}
}
}
#[doc = "The class to represent a collection of REST reference links."]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Default)]
pub struct ReferenceLinks {
#[doc = "The readonly view of the links. Because Reference links are readonly, we only want to expose them as read only."]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub links: Option<serde_json::Value>,
}
impl ReferenceLinks {
pub fn new() -> Self {
Self::default()
}
}
#[doc = ""]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Default)]
pub struct TeamProjectCollectionReference {
#[serde(default, skip_serializing_if = "Option::is_none")]
pub id: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub name: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub url: Option<String>,
}
impl TeamProjectCollectionReference {
pub fn new() -> Self {
Self::default()
}
}
#[doc = ""]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct TeamProjectReference {
#[serde(default, skip_serializing_if = "Option::is_none")]
pub abbreviation: Option<String>,
#[serde(
rename = "defaultTeamImageUrl",
default,
skip_serializing_if = "Option::is_none"
)]
pub default_team_image_url: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub description: Option<String>,
pub id: String,
#[serde(rename = "lastUpdateTime", with = "crate::date_time::rfc3339")]
pub last_update_time: time::OffsetDateTime,
pub name: String,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub revision: Option<i64>,
pub state: team_project_reference::State,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub url: Option<String>,
pub visibility: team_project_reference::Visibility,
}
impl TeamProjectReference {
pub fn new(
id: String,
last_update_time: time::OffsetDateTime,
name: String,
state: team_project_reference::State,
visibility: team_project_reference::Visibility,
) -> Self {
Self {
abbreviation: None,
default_team_image_url: None,
description: None,
id,
last_update_time,
name,
revision: None,
state,
url: None,
visibility,
}
}
}
pub mod team_project_reference {
use super::*;
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub enum State {
#[serde(rename = "deleting")]
Deleting,
#[serde(rename = "new")]
New,
#[serde(rename = "wellFormed")]
WellFormed,
#[serde(rename = "createPending")]
CreatePending,
#[serde(rename = "all")]
All,
#[serde(rename = "unchanged")]
Unchanged,
#[serde(rename = "deleted")]
Deleted,
}
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub enum Visibility {
#[serde(rename = "private")]
Private,
#[serde(rename = "public")]
Public,
#[serde(rename = "organization")]
Organization,
#[serde(rename = "unchanged")]
Unchanged,
}
}
#[doc = "This class is used to serialized collections as a single JSON object on the wire, to avoid serializing JSON arrays directly to the client, which can be a security hole"]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Default)]
pub struct VssJsonCollectionWrapper {
#[serde(flatten)]
pub vss_json_collection_wrapper_base: VssJsonCollectionWrapperBase,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub value: Option<String>,
}
impl VssJsonCollectionWrapper {
pub fn new() -> Self {
Self::default()
}
}
#[doc = ""]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Default)]
pub struct VssJsonCollectionWrapperBase {
#[serde(default, skip_serializing_if = "Option::is_none")]
pub count: Option<i32>,
}
impl VssJsonCollectionWrapperBase {
pub fn new() -> Self {
Self::default()
}
}
#[doc = "Defines a wiki repository which encapsulates the git repository backing the wiki."]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Default)]
pub struct Wiki {
#[serde(flatten)]
pub wiki_create_parameters: WikiCreateParameters,
#[doc = "The head commit associated with the git repository backing up the wiki."]
#[serde(
rename = "headCommit",
default,
skip_serializing_if = "Option::is_none"
)]
pub head_commit: Option<String>,
#[doc = "The ID of the wiki which is same as the ID of the Git repository that it is backed by."]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub id: Option<String>,
#[doc = ""]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub repository: Option<GitRepository>,
}
impl Wiki {
pub fn new() -> Self {
Self::default()
}
}
#[doc = "Defines properties for wiki attachment file."]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Default)]
pub struct WikiAttachment {
#[doc = "Name of the wiki attachment file."]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub name: Option<String>,
#[doc = "Path of the wiki attachment file."]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub path: Option<String>,
}
impl WikiAttachment {
pub fn new() -> Self {
Self::default()
}
}
#[doc = "Response contract for the Wiki Attachments API"]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Default)]
pub struct WikiAttachmentResponse {
#[doc = "Defines properties for wiki attachment file."]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub attachment: Option<WikiAttachment>,
#[doc = "Contains the list of ETag values from the response header of the attachments API call. The first item in the list contains the version of the wiki attachment."]
#[serde(
rename = "eTag",
default,
skip_serializing_if = "Vec::is_empty",
deserialize_with = "crate::serde::deserialize_null_default"
)]
pub e_tag: Vec<String>,
}
impl WikiAttachmentResponse {
pub fn new() -> Self {
Self::default()
}
}
#[doc = "Base wiki creation parameters."]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Default)]
pub struct WikiCreateBaseParameters {
#[doc = "Folder path inside repository which is shown as Wiki. Not required for ProjectWiki type."]
#[serde(
rename = "mappedPath",
default,
skip_serializing_if = "Option::is_none"
)]
pub mapped_path: Option<String>,
#[doc = "Wiki name."]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub name: Option<String>,
#[doc = "ID of the project in which the wiki is to be created."]
#[serde(rename = "projectId", default, skip_serializing_if = "Option::is_none")]
pub project_id: Option<String>,
#[doc = "ID of the git repository that backs up the wiki. Not required for ProjectWiki type."]
#[serde(
rename = "repositoryId",
default,
skip_serializing_if = "Option::is_none"
)]
pub repository_id: Option<String>,
#[doc = "Type of the wiki."]
#[serde(rename = "type", default, skip_serializing_if = "Option::is_none")]
pub type_: Option<wiki_create_base_parameters::Type>,
}
impl WikiCreateBaseParameters {
pub fn new() -> Self {
Self::default()
}
}
pub mod wiki_create_base_parameters {
use super::*;
#[doc = "Type of the wiki."]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub enum Type {
#[serde(rename = "projectWiki")]
ProjectWiki,
#[serde(rename = "codeWiki")]
CodeWiki,
}
}
#[doc = "Wiki creations parameters."]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Default)]
pub struct WikiCreateParameters {
#[doc = "Wiki name."]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub name: Option<String>,
#[doc = "ID of the project in which the wiki is to be created."]
#[serde(rename = "projectId", default, skip_serializing_if = "Option::is_none")]
pub project_id: Option<String>,
}
impl WikiCreateParameters {
pub fn new() -> Self {
Self::default()
}
}
#[doc = "Wiki creation parameters."]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Default)]
pub struct WikiCreateParametersV2 {
#[serde(flatten)]
pub wiki_create_base_parameters: WikiCreateBaseParameters,
#[doc = ""]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub version: Option<GitVersionDescriptor>,
}
impl WikiCreateParametersV2 {
pub fn new() -> Self {
Self::default()
}
}
#[doc = "Defines a page in a wiki."]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Default)]
pub struct WikiPage {
#[serde(flatten)]
pub wiki_page_create_or_update_parameters: WikiPageCreateOrUpdateParameters,
#[doc = "Path of the git item corresponding to the wiki page stored in the backing Git repository."]
#[serde(
rename = "gitItemPath",
default,
skip_serializing_if = "Option::is_none"
)]
pub git_item_path: Option<String>,
#[doc = "When present, permanent identifier for the wiki page"]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub id: Option<i32>,
#[doc = "True if a page is non-conforming, i.e. 1) if the name doesn't match page naming standards. 2) if the page does not have a valid entry in the appropriate order file."]
#[serde(
rename = "isNonConformant",
default,
skip_serializing_if = "Option::is_none"
)]
pub is_non_conformant: Option<bool>,
#[doc = "True if this page has subpages under its path."]
#[serde(
rename = "isParentPage",
default,
skip_serializing_if = "Option::is_none"
)]
pub is_parent_page: Option<bool>,
#[doc = "Order of the wiki page, relative to other pages in the same hierarchy level."]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub order: Option<i32>,
#[doc = "Path of the wiki page."]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub path: Option<String>,
#[doc = "Remote web url to the wiki page."]
#[serde(rename = "remoteUrl", default, skip_serializing_if = "Option::is_none")]
pub remote_url: Option<String>,
#[doc = "List of subpages of the current page."]
#[serde(
rename = "subPages",
default,
skip_serializing_if = "Vec::is_empty",
deserialize_with = "crate::serde::deserialize_null_default"
)]
pub sub_pages: Vec<WikiPage>,
#[doc = "REST url for this wiki page."]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub url: Option<String>,
}
impl WikiPage {
pub fn new() -> Self {
Self::default()
}
}
#[doc = "Contract encapsulating parameters for the page create or update operations."]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Default)]
pub struct WikiPageCreateOrUpdateParameters {
#[doc = "Content of the wiki page."]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub content: Option<String>,
}
impl WikiPageCreateOrUpdateParameters {
pub fn new() -> Self {
Self::default()
}
}
#[doc = "Defines a page with its metedata in a wiki."]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Default)]
pub struct WikiPageDetail {
#[doc = "When present, permanent identifier for the wiki page"]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub id: Option<i32>,
#[doc = "Path of the wiki page."]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub path: Option<String>,
#[doc = "Path of the wiki page."]
#[serde(
rename = "viewStats",
default,
skip_serializing_if = "Vec::is_empty",
deserialize_with = "crate::serde::deserialize_null_default"
)]
pub view_stats: Vec<WikiPageStat>,
}
impl WikiPageDetail {
pub fn new() -> Self {
Self::default()
}
}
#[doc = ""]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Default)]
pub struct WikiPageDetailList {
#[serde(default, skip_serializing_if = "Option::is_none")]
pub count: Option<i32>,
#[serde(
default,
skip_serializing_if = "Vec::is_empty",
deserialize_with = "crate::serde::deserialize_null_default"
)]
pub value: Vec<WikiPageDetail>,
}
impl WikiPageDetailList {
pub fn new() -> Self {
Self::default()
}
}
#[doc = "Request contract for Wiki Page Move."]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Default)]
pub struct WikiPageMove {
#[serde(flatten)]
pub wiki_page_move_parameters: WikiPageMoveParameters,
#[doc = "Defines a page in a wiki."]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub page: Option<WikiPage>,
}
impl WikiPageMove {
pub fn new() -> Self {
Self::default()
}
}
#[doc = "Contract encapsulating parameters for the page move operation."]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Default)]
pub struct WikiPageMoveParameters {
#[doc = "New order of the wiki page."]
#[serde(rename = "newOrder", default, skip_serializing_if = "Option::is_none")]
pub new_order: Option<i32>,
#[doc = "New path of the wiki page."]
#[serde(rename = "newPath", default, skip_serializing_if = "Option::is_none")]
pub new_path: Option<String>,
#[doc = "Current path of the wiki page."]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub path: Option<String>,
}
impl WikiPageMoveParameters {
pub fn new() -> Self {
Self::default()
}
}
#[doc = "Response contract for the Wiki Page Move API."]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Default)]
pub struct WikiPageMoveResponse {
#[doc = "Contains the list of ETag values from the response header of the page move API call. The first item in the list contains the version of the wiki page subject to page move."]
#[serde(
rename = "eTag",
default,
skip_serializing_if = "Vec::is_empty",
deserialize_with = "crate::serde::deserialize_null_default"
)]
pub e_tag: Vec<String>,
#[doc = "Request contract for Wiki Page Move."]
#[serde(rename = "pageMove", default, skip_serializing_if = "Option::is_none")]
pub page_move: Option<WikiPageMove>,
}
impl WikiPageMoveResponse {
pub fn new() -> Self {
Self::default()
}
}
#[doc = "Response contract for the Wiki Pages PUT, PATCH and DELETE APIs."]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Default)]
pub struct WikiPageResponse {
#[doc = "Contains the list of ETag values from the response header of the pages API call. The first item in the list contains the version of the wiki page."]
#[serde(
rename = "eTag",
default,
skip_serializing_if = "Vec::is_empty",
deserialize_with = "crate::serde::deserialize_null_default"
)]
pub e_tag: Vec<String>,
#[doc = "Defines a page in a wiki."]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub page: Option<WikiPage>,
}
impl WikiPageResponse {
pub fn new() -> Self {
Self::default()
}
}
#[doc = "Defines properties for wiki page stat."]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Default)]
pub struct WikiPageStat {
#[doc = "the count of the stat for the Day"]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub count: Option<i32>,
#[doc = "Day of the stat"]
#[serde(default, with = "crate::date_time::rfc3339::option")]
pub day: Option<time::OffsetDateTime>,
}
impl WikiPageStat {
pub fn new() -> Self {
Self::default()
}
}
#[doc = "Defines properties for wiki page view stats."]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Default)]
pub struct WikiPageViewStats {
#[doc = "Wiki page view count."]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub count: Option<i32>,
#[doc = "Wiki page last viewed time."]
#[serde(
rename = "lastViewedTime",
default,
with = "crate::date_time::rfc3339::option"
)]
pub last_viewed_time: Option<time::OffsetDateTime>,
#[doc = "Wiki page path."]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub path: Option<String>,
}
impl WikiPageViewStats {
pub fn new() -> Self {
Self::default()
}
}
#[doc = "Contract encapsulating parameters for the pages batch."]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Default)]
pub struct WikiPagesBatchRequest {
#[doc = "If the list of page data returned is not complete, a continuation token to query next batch of pages is included in the response header as \"x-ms-continuationtoken\". Omit this parameter to get the first batch of Wiki Page Data."]
#[serde(
rename = "continuationToken",
default,
skip_serializing_if = "Option::is_none"
)]
pub continuation_token: Option<String>,
#[doc = "last N days from the current day for which page views is to be returned. It's inclusive of current day."]
#[serde(
rename = "pageViewsForDays",
default,
skip_serializing_if = "Option::is_none"
)]
pub page_views_for_days: Option<i32>,
#[doc = "Total count of pages on a wiki to return."]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub top: Option<i32>,
}
impl WikiPagesBatchRequest {
pub fn new() -> Self {
Self::default()
}
}
#[doc = "Wiki update parameters."]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Default)]
pub struct WikiUpdateParameters {
#[doc = "Name for wiki."]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub name: Option<String>,
#[doc = "Versions of the wiki."]
#[serde(
default,
skip_serializing_if = "Vec::is_empty",
deserialize_with = "crate::serde::deserialize_null_default"
)]
pub versions: Vec<GitVersionDescriptor>,
}
impl WikiUpdateParameters {
pub fn new() -> Self {
Self::default()
}
}
#[doc = ""]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Default)]
pub struct WikiUpdatedNotificationMessage {
#[doc = "Collection host Id for which the wikis are updated."]
#[serde(
rename = "collectionId",
default,
skip_serializing_if = "Option::is_none"
)]
pub collection_id: Option<String>,
#[doc = "Project Id for which the wikis are updated."]
#[serde(rename = "projectId", default, skip_serializing_if = "Option::is_none")]
pub project_id: Option<String>,
#[doc = "Repository Id associated with the particular wiki which is added, updated or deleted."]
#[serde(
rename = "repositoryId",
default,
skip_serializing_if = "Option::is_none"
)]
pub repository_id: Option<String>,
}
impl WikiUpdatedNotificationMessage {
pub fn new() -> Self {
Self::default()
}
}
#[doc = "Defines a wiki resource."]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Default)]
pub struct WikiV2 {
#[serde(flatten)]
pub wiki_create_base_parameters: WikiCreateBaseParameters,
#[doc = "ID of the wiki."]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub id: Option<String>,
#[doc = "Properties of the wiki."]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub properties: Option<serde_json::Value>,
#[doc = "Remote web url to the wiki."]
#[serde(rename = "remoteUrl", default, skip_serializing_if = "Option::is_none")]
pub remote_url: Option<String>,
#[doc = "REST url for this wiki."]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub url: Option<String>,
#[doc = "Versions of the wiki."]
#[serde(
default,
skip_serializing_if = "Vec::is_empty",
deserialize_with = "crate::serde::deserialize_null_default"
)]
pub versions: Vec<GitVersionDescriptor>,
}
impl WikiV2 {
pub fn new() -> Self {
Self::default()
}
}
#[doc = ""]
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Default)]
pub struct WikiV2List {
#[serde(default, skip_serializing_if = "Option::is_none")]
pub count: Option<i32>,
#[serde(
default,
skip_serializing_if = "Vec::is_empty",
deserialize_with = "crate::serde::deserialize_null_default"
)]
pub value: Vec<WikiV2>,
}
impl WikiV2List {
pub fn new() -> Self {
Self::default()
}
}