Protocol: regenerate Swift gateway models

This commit is contained in:
Vignesh Natarajan
2026-02-14 17:26:53 -08:00
parent e3d5fff264
commit 0f53a3b9f3
2 changed files with 10 additions and 2 deletions

View File

@@ -1099,14 +1099,18 @@ public struct SessionsPatchParams: Codable, Sendable {
public struct SessionsResetParams: Codable, Sendable {
public let key: String
public let reason: AnyCodable?
public init(
key: String
key: String,
reason: AnyCodable?
) {
self.key = key
self.reason = reason
}
private enum CodingKeys: String, CodingKey {
case key
case reason
}
}

View File

@@ -1099,14 +1099,18 @@ public struct SessionsPatchParams: Codable, Sendable {
public struct SessionsResetParams: Codable, Sendable {
public let key: String
public let reason: AnyCodable?
public init(
key: String
key: String,
reason: AnyCodable?
) {
self.key = key
self.reason = reason
}
private enum CodingKeys: String, CodingKey {
case key
case reason
}
}