File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -19824,6 +19824,8 @@ public enum Components {
19824
19824
public var added_by: Swift.String?
19825
19825
/// - Remark: Generated from `#/components/schemas/deploy-key/last_used`.
19826
19826
public var last_used: Swift.String?
19827
+ /// - Remark: Generated from `#/components/schemas/deploy-key/enabled`.
19828
+ public var enabled: Swift.Bool?
19827
19829
/// Creates a new `deploy_hyphen_key`.
19828
19830
///
19829
19831
/// - Parameters:
@@ -19836,6 +19838,7 @@ public enum Components {
19836
19838
/// - read_only:
19837
19839
/// - added_by:
19838
19840
/// - last_used:
19841
+ /// - enabled:
19839
19842
public init(
19840
19843
id: Swift.Int,
19841
19844
key: Swift.String,
@@ -19845,7 +19848,8 @@ public enum Components {
19845
19848
created_at: Swift.String,
19846
19849
read_only: Swift.Bool,
19847
19850
added_by: Swift.String? = nil,
19848
- last_used: Swift.String? = nil
19851
+ last_used: Swift.String? = nil,
19852
+ enabled: Swift.Bool? = nil
19849
19853
) {
19850
19854
self.id = id
19851
19855
self.key = key
@@ -19856,6 +19860,7 @@ public enum Components {
19856
19860
self.read_only = read_only
19857
19861
self.added_by = added_by
19858
19862
self.last_used = last_used
19863
+ self.enabled = enabled
19859
19864
}
19860
19865
public enum CodingKeys: String, CodingKey {
19861
19866
case id
@@ -19867,6 +19872,7 @@ public enum Components {
19867
19872
case read_only
19868
19873
case added_by
19869
19874
case last_used
19875
+ case enabled
19870
19876
}
19871
19877
}
19872
19878
/// Language
You can’t perform that action at this time.
0 commit comments