@@ -1688,6 +1688,10 @@ public enum Components {
1688
1688
///
1689
1689
/// - Remark: Generated from `#/components/schemas/hook-delivery-item/repository_id`.
1690
1690
public var repository_id: Swift.Int?
1691
+ /// Time when the webhook delivery was throttled.
1692
+ ///
1693
+ /// - Remark: Generated from `#/components/schemas/hook-delivery-item/throttled_at`.
1694
+ public var throttled_at: Foundation.Date?
1691
1695
/// Creates a new `hook_hyphen_delivery_hyphen_item`.
1692
1696
///
1693
1697
/// - Parameters:
@@ -1702,6 +1706,7 @@ public enum Components {
1702
1706
/// - action: The type of activity for the event that triggered the delivery.
1703
1707
/// - installation_id: The id of the GitHub App installation associated with this event.
1704
1708
/// - repository_id: The id of the repository associated with this event.
1709
+ /// - throttled_at: Time when the webhook delivery was throttled.
1705
1710
public init(
1706
1711
id: Swift.Int,
1707
1712
guid: Swift.String,
@@ -1713,7 +1718,8 @@ public enum Components {
1713
1718
event: Swift.String,
1714
1719
action: Swift.String? = nil,
1715
1720
installation_id: Swift.Int? = nil,
1716
- repository_id: Swift.Int? = nil
1721
+ repository_id: Swift.Int? = nil,
1722
+ throttled_at: Foundation.Date? = nil
1717
1723
) {
1718
1724
self.id = id
1719
1725
self.guid = guid
@@ -1726,6 +1732,7 @@ public enum Components {
1726
1732
self.action = action
1727
1733
self.installation_id = installation_id
1728
1734
self.repository_id = repository_id
1735
+ self.throttled_at = throttled_at
1729
1736
}
1730
1737
public enum CodingKeys: String, CodingKey {
1731
1738
case id
@@ -1739,6 +1746,7 @@ public enum Components {
1739
1746
case action
1740
1747
case installation_id
1741
1748
case repository_id
1749
+ case throttled_at
1742
1750
}
1743
1751
}
1744
1752
/// Scim Error
@@ -1963,6 +1971,10 @@ public enum Components {
1963
1971
///
1964
1972
/// - Remark: Generated from `#/components/schemas/hook-delivery/repository_id`.
1965
1973
public var repository_id: Swift.Int?
1974
+ /// Time when the webhook delivery was throttled.
1975
+ ///
1976
+ /// - Remark: Generated from `#/components/schemas/hook-delivery/throttled_at`.
1977
+ public var throttled_at: Foundation.Date?
1966
1978
/// The URL target of the delivery.
1967
1979
///
1968
1980
/// - Remark: Generated from `#/components/schemas/hook-delivery/url`.
@@ -2099,6 +2111,7 @@ public enum Components {
2099
2111
/// - action: The type of activity for the event that triggered the delivery.
2100
2112
/// - installation_id: The id of the GitHub App installation associated with this event.
2101
2113
/// - repository_id: The id of the repository associated with this event.
2114
+ /// - throttled_at: Time when the webhook delivery was throttled.
2102
2115
/// - url: The URL target of the delivery.
2103
2116
/// - request:
2104
2117
/// - response:
@@ -2114,6 +2127,7 @@ public enum Components {
2114
2127
action: Swift.String? = nil,
2115
2128
installation_id: Swift.Int? = nil,
2116
2129
repository_id: Swift.Int? = nil,
2130
+ throttled_at: Foundation.Date? = nil,
2117
2131
url: Swift.String? = nil,
2118
2132
request: Components.Schemas.hook_hyphen_delivery.requestPayload,
2119
2133
response: Components.Schemas.hook_hyphen_delivery.responsePayload
@@ -2129,6 +2143,7 @@ public enum Components {
2129
2143
self.action = action
2130
2144
self.installation_id = installation_id
2131
2145
self.repository_id = repository_id
2146
+ self.throttled_at = throttled_at
2132
2147
self.url = url
2133
2148
self.request = request
2134
2149
self.response = response
@@ -2145,6 +2160,7 @@ public enum Components {
2145
2160
case action
2146
2161
case installation_id
2147
2162
case repository_id
2163
+ case throttled_at
2148
2164
case url
2149
2165
case request
2150
2166
case response
0 commit comments