mirror of https://github.com/openclaw/openclaw.git
chore(protocol): regenerate Swift models for device pair remove params
This commit is contained in:
parent
42025915db
commit
168d24526e
|
|
@ -2508,6 +2508,19 @@ public struct DevicePairRejectParams: Codable, Sendable {
|
|||
}
|
||||
}
|
||||
|
||||
public struct DevicePairRemoveParams: Codable, Sendable {
|
||||
public let deviceid: String
|
||||
|
||||
public init(
|
||||
deviceid: String
|
||||
) {
|
||||
self.deviceid = deviceid
|
||||
}
|
||||
private enum CodingKeys: String, CodingKey {
|
||||
case deviceid = "deviceId"
|
||||
}
|
||||
}
|
||||
|
||||
public struct DeviceTokenRotateParams: Codable, Sendable {
|
||||
public let deviceid: String
|
||||
public let role: String
|
||||
|
|
|
|||
|
|
@ -2508,6 +2508,19 @@ public struct DevicePairRejectParams: Codable, Sendable {
|
|||
}
|
||||
}
|
||||
|
||||
public struct DevicePairRemoveParams: Codable, Sendable {
|
||||
public let deviceid: String
|
||||
|
||||
public init(
|
||||
deviceid: String
|
||||
) {
|
||||
self.deviceid = deviceid
|
||||
}
|
||||
private enum CodingKeys: String, CodingKey {
|
||||
case deviceid = "deviceId"
|
||||
}
|
||||
}
|
||||
|
||||
public struct DeviceTokenRotateParams: Codable, Sendable {
|
||||
public let deviceid: String
|
||||
public let role: String
|
||||
|
|
|
|||
Loading…
Reference in New Issue