@@ -6428,6 +6428,10 @@ public enum Components {
6428
6428
///
6429
6429
/// - Remark: Generated from `#/components/schemas/hook-delivery-item/repository_id`.
6430
6430
public var repository_id: Swift.Int?
6431
+ /// Time when the webhook delivery was throttled.
6432
+ ///
6433
+ /// - Remark: Generated from `#/components/schemas/hook-delivery-item/throttled_at`.
6434
+ public var throttled_at: Foundation.Date?
6431
6435
/// Creates a new `hook_hyphen_delivery_hyphen_item`.
6432
6436
///
6433
6437
/// - Parameters:
@@ -6442,6 +6446,7 @@ public enum Components {
6442
6446
/// - action: The type of activity for the event that triggered the delivery.
6443
6447
/// - installation_id: The id of the GitHub App installation associated with this event.
6444
6448
/// - repository_id: The id of the repository associated with this event.
6449
+ /// - throttled_at: Time when the webhook delivery was throttled.
6445
6450
public init(
6446
6451
id: Swift.Int,
6447
6452
guid: Swift.String,
@@ -6453,7 +6458,8 @@ public enum Components {
6453
6458
event: Swift.String,
6454
6459
action: Swift.String? = nil,
6455
6460
installation_id: Swift.Int? = nil,
6456
- repository_id: Swift.Int? = nil
6461
+ repository_id: Swift.Int? = nil,
6462
+ throttled_at: Foundation.Date? = nil
6457
6463
) {
6458
6464
self.id = id
6459
6465
self.guid = guid
@@ -6466,6 +6472,7 @@ public enum Components {
6466
6472
self.action = action
6467
6473
self.installation_id = installation_id
6468
6474
self.repository_id = repository_id
6475
+ self.throttled_at = throttled_at
6469
6476
}
6470
6477
public enum CodingKeys: String, CodingKey {
6471
6478
case id
@@ -6479,6 +6486,7 @@ public enum Components {
6479
6486
case action
6480
6487
case installation_id
6481
6488
case repository_id
6489
+ case throttled_at
6482
6490
}
6483
6491
}
6484
6492
/// Scim Error
@@ -6703,6 +6711,10 @@ public enum Components {
6703
6711
///
6704
6712
/// - Remark: Generated from `#/components/schemas/hook-delivery/repository_id`.
6705
6713
public var repository_id: Swift.Int?
6714
+ /// Time when the webhook delivery was throttled.
6715
+ ///
6716
+ /// - Remark: Generated from `#/components/schemas/hook-delivery/throttled_at`.
6717
+ public var throttled_at: Foundation.Date?
6706
6718
/// The URL target of the delivery.
6707
6719
///
6708
6720
/// - Remark: Generated from `#/components/schemas/hook-delivery/url`.
@@ -6839,6 +6851,7 @@ public enum Components {
6839
6851
/// - action: The type of activity for the event that triggered the delivery.
6840
6852
/// - installation_id: The id of the GitHub App installation associated with this event.
6841
6853
/// - repository_id: The id of the repository associated with this event.
6854
+ /// - throttled_at: Time when the webhook delivery was throttled.
6842
6855
/// - url: The URL target of the delivery.
6843
6856
/// - request:
6844
6857
/// - response:
@@ -6854,6 +6867,7 @@ public enum Components {
6854
6867
action: Swift.String? = nil,
6855
6868
installation_id: Swift.Int? = nil,
6856
6869
repository_id: Swift.Int? = nil,
6870
+ throttled_at: Foundation.Date? = nil,
6857
6871
url: Swift.String? = nil,
6858
6872
request: Components.Schemas.hook_hyphen_delivery.requestPayload,
6859
6873
response: Components.Schemas.hook_hyphen_delivery.responsePayload
@@ -6869,6 +6883,7 @@ public enum Components {
6869
6883
self.action = action
6870
6884
self.installation_id = installation_id
6871
6885
self.repository_id = repository_id
6886
+ self.throttled_at = throttled_at
6872
6887
self.url = url
6873
6888
self.request = request
6874
6889
self.response = response
@@ -6885,6 +6900,7 @@ public enum Components {
6885
6900
case action
6886
6901
case installation_id
6887
6902
case repository_id
6903
+ case throttled_at
6888
6904
case url
6889
6905
case request
6890
6906
case response
0 commit comments