mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 03:03:12 +00:00
chore(protocol): regenerate Swift models for device pair remove params
This commit is contained in:
parent
42025915db
commit
168d24526e
2 changed files with 26 additions and 0 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue