build: refresh channel status protocol model

This commit is contained in:
Peter Steinberger 2026-05-11 18:21:07 +01:00
parent 1e6e585961
commit 45b27e3866
No known key found for this signature in database

View file

@ -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
}
}