Skip to content

Commit 22a3afb

Browse files
Commit via running ake Sources/pulls
1 parent b1bb078 commit 22a3afb

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

Sources/pulls/Types.swift

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2938,29 +2938,35 @@ public enum Components {
29382938
public var payload: Swift.String?
29392939
/// - Remark: Generated from `#/components/schemas/verification/signature`.
29402940
public var signature: Swift.String?
2941+
/// - Remark: Generated from `#/components/schemas/verification/verified_at`.
2942+
public var verified_at: Swift.String?
29412943
/// Creates a new `verification`.
29422944
///
29432945
/// - Parameters:
29442946
/// - verified:
29452947
/// - reason:
29462948
/// - payload:
29472949
/// - signature:
2950+
/// - verified_at:
29482951
public init(
29492952
verified: Swift.Bool,
29502953
reason: Swift.String,
29512954
payload: Swift.String? = nil,
2952-
signature: Swift.String? = nil
2955+
signature: Swift.String? = nil,
2956+
verified_at: Swift.String? = nil
29532957
) {
29542958
self.verified = verified
29552959
self.reason = reason
29562960
self.payload = payload
29572961
self.signature = signature
2962+
self.verified_at = verified_at
29582963
}
29592964
public enum CodingKeys: String, CodingKey {
29602965
case verified
29612966
case reason
29622967
case payload
29632968
case signature
2969+
case verified_at
29642970
}
29652971
}
29662972
/// Diff Entry

0 commit comments

Comments
 (0)