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 @@ -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
You can’t perform that action at this time.
0 commit comments