We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 918523b commit 42fe7d2Copy full SHA for 42fe7d2
src/Octokit.Webhooks/WebhookEvent.cs
@@ -17,4 +17,10 @@ public abstract record WebhookEvent
17
18
[JsonPropertyName("sender")]
19
public User? Sender { get; init; }
20
+
21
+ /// <summary>
22
+ /// Gets any additional properties that were not mapped to a strongly-typed property on the event.
23
+ /// </summary>
24
+ [JsonExtensionData]
25
+ public IDictionary<string, dynamic>? AdditionalProperties { get; init; }
26
}
0 commit comments