@@ -2695,6 +2695,10 @@ public enum Components {
2695
2695
///
2696
2696
/// - Remark: Generated from `#/components/schemas/hook-delivery-item/repository_id`.
2697
2697
public var repository_id: Swift.Int?
2698
+ /// Time when the webhook delivery was throttled.
2699
+ ///
2700
+ /// - Remark: Generated from `#/components/schemas/hook-delivery-item/throttled_at`.
2701
+ public var throttled_at: Foundation.Date?
2698
2702
/// Creates a new `hook_hyphen_delivery_hyphen_item`.
2699
2703
///
2700
2704
/// - Parameters:
@@ -2709,6 +2713,7 @@ public enum Components {
2709
2713
/// - action: The type of activity for the event that triggered the delivery.
2710
2714
/// - installation_id: The id of the GitHub App installation associated with this event.
2711
2715
/// - repository_id: The id of the repository associated with this event.
2716
+ /// - throttled_at: Time when the webhook delivery was throttled.
2712
2717
public init(
2713
2718
id: Swift.Int,
2714
2719
guid: Swift.String,
@@ -2720,7 +2725,8 @@ public enum Components {
2720
2725
event: Swift.String,
2721
2726
action: Swift.String? = nil,
2722
2727
installation_id: Swift.Int? = nil,
2723
- repository_id: Swift.Int? = nil
2728
+ repository_id: Swift.Int? = nil,
2729
+ throttled_at: Foundation.Date? = nil
2724
2730
) {
2725
2731
self.id = id
2726
2732
self.guid = guid
@@ -2733,6 +2739,7 @@ public enum Components {
2733
2739
self.action = action
2734
2740
self.installation_id = installation_id
2735
2741
self.repository_id = repository_id
2742
+ self.throttled_at = throttled_at
2736
2743
}
2737
2744
public enum CodingKeys: String, CodingKey {
2738
2745
case id
@@ -2746,6 +2753,7 @@ public enum Components {
2746
2753
case action
2747
2754
case installation_id
2748
2755
case repository_id
2756
+ case throttled_at
2749
2757
}
2750
2758
}
2751
2759
/// Scim Error
@@ -2970,6 +2978,10 @@ public enum Components {
2970
2978
///
2971
2979
/// - Remark: Generated from `#/components/schemas/hook-delivery/repository_id`.
2972
2980
public var repository_id: Swift.Int?
2981
+ /// Time when the webhook delivery was throttled.
2982
+ ///
2983
+ /// - Remark: Generated from `#/components/schemas/hook-delivery/throttled_at`.
2984
+ public var throttled_at: Foundation.Date?
2973
2985
/// The URL target of the delivery.
2974
2986
///
2975
2987
/// - Remark: Generated from `#/components/schemas/hook-delivery/url`.
@@ -3106,6 +3118,7 @@ public enum Components {
3106
3118
/// - action: The type of activity for the event that triggered the delivery.
3107
3119
/// - installation_id: The id of the GitHub App installation associated with this event.
3108
3120
/// - repository_id: The id of the repository associated with this event.
3121
+ /// - throttled_at: Time when the webhook delivery was throttled.
3109
3122
/// - url: The URL target of the delivery.
3110
3123
/// - request:
3111
3124
/// - response:
@@ -3121,6 +3134,7 @@ public enum Components {
3121
3134
action: Swift.String? = nil,
3122
3135
installation_id: Swift.Int? = nil,
3123
3136
repository_id: Swift.Int? = nil,
3137
+ throttled_at: Foundation.Date? = nil,
3124
3138
url: Swift.String? = nil,
3125
3139
request: Components.Schemas.hook_hyphen_delivery.requestPayload,
3126
3140
response: Components.Schemas.hook_hyphen_delivery.responsePayload
@@ -3136,6 +3150,7 @@ public enum Components {
3136
3150
self.action = action
3137
3151
self.installation_id = installation_id
3138
3152
self.repository_id = repository_id
3153
+ self.throttled_at = throttled_at
3139
3154
self.url = url
3140
3155
self.request = request
3141
3156
self.response = response
@@ -3152,6 +3167,7 @@ public enum Components {
3152
3167
case action
3153
3168
case installation_id
3154
3169
case repository_id
3170
+ case throttled_at
3155
3171
case url
3156
3172
case request
3157
3173
case response
0 commit comments