@@ -16,37 +16,37 @@ public sealed class CreateWebhookRequest
16
16
public string Url { get ; set ; }
17
17
18
18
[ JsonProperty ( "push_events" ) ]
19
- public bool PushEvents { get ; set ; }
19
+ public bool ? PushEvents { get ; set ; }
20
20
21
21
[ JsonProperty ( "push_events_branch_filter" ) ]
22
22
public string PushEventsBranchFilter { get ; set ; }
23
23
24
24
[ JsonProperty ( "issues_events" ) ]
25
- public bool IssuesEvents { get ; set ; }
25
+ public bool ? IssuesEvents { get ; set ; }
26
26
27
27
[ JsonProperty ( "confidential_issues_events" ) ]
28
- public bool ConfidentialIssuesEvents { get ; set ; }
28
+ public bool ? ConfidentialIssuesEvents { get ; set ; }
29
29
30
30
[ JsonProperty ( "merge_requests_events" ) ]
31
- public bool MergeRequestsEvents { get ; set ; }
31
+ public bool ? MergeRequestsEvents { get ; set ; }
32
32
33
33
[ JsonProperty ( "tag_push_events" ) ]
34
- public bool TagPushEvents { get ; set ; }
34
+ public bool ? TagPushEvents { get ; set ; }
35
35
36
36
[ JsonProperty ( "note_events" ) ]
37
- public bool NoteEvents { get ; set ; }
37
+ public bool ? NoteEvents { get ; set ; }
38
38
39
39
[ JsonProperty ( "job_events" ) ]
40
- public bool JobEvents { get ; set ; }
40
+ public bool ? JobEvents { get ; set ; }
41
41
42
42
[ JsonProperty ( "pipeline_events" ) ]
43
- public bool PipelineEvents { get ; set ; }
43
+ public bool ? PipelineEvents { get ; set ; }
44
44
45
45
[ JsonProperty ( "wiki_page_events" ) ]
46
- public bool WikiPageEvents { get ; set ; }
46
+ public bool ? WikiPageEvents { get ; set ; }
47
47
48
48
[ JsonProperty ( "enable_ssl_verification" ) ]
49
- public bool EnableSslVerification { get ; set ; }
49
+ public bool ? EnableSslVerification { get ; set ; }
50
50
51
51
[ JsonProperty ( "token" ) ]
52
52
public string Token { get ; set ; }
0 commit comments