mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-10 00:11:19 +00:00
build: refresh channel status protocol model
This commit is contained in:
parent
1e6e585961
commit
45b27e3866
1 changed files with 5 additions and 1 deletions
|
|
@ -3627,18 +3627,22 @@ public struct TalkSpeakResult: Codable, Sendable {
|
|||
public struct ChannelsStatusParams: Codable, Sendable {
|
||||
public let probe: Bool?
|
||||
public let timeoutms: Int?
|
||||
public let channel: String?
|
||||
|
||||
public init(
|
||||
probe: Bool?,
|
||||
timeoutms: Int?)
|
||||
timeoutms: Int?,
|
||||
channel: String?)
|
||||
{
|
||||
self.probe = probe
|
||||
self.timeoutms = timeoutms
|
||||
self.channel = channel
|
||||
}
|
||||
|
||||
private enum CodingKeys: String, CodingKey {
|
||||
case probe
|
||||
case timeoutms = "timeoutMs"
|
||||
case channel
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue