jellyfin-sdk-swift/Sources/Entities/SeriesTimerCreatedMessage.swift
2024-05-20 12:37:34 -06:00

40 lines
1.5 KiB
Swift

//
// jellyfin-sdk-swift is subject to the terms of the Mozilla Public
// License, v2.0. If a copy of the MPL was not distributed with this
// file, you can obtain one at https://mozilla.org/MPL/2.0/.
//
// Copyright (c) 2024 Jellyfin & Jellyfin Contributors
//
import Foundation
/// Series timer created message.
public struct SeriesTimerCreatedMessage: Codable, Hashable {
/// Gets or sets the data.
public var data: TimerEventInfo?
/// Gets or sets the message id.
public var messageID: String?
/// The different kinds of messages that are used in the WebSocket api.
public var messageType: SessionMessageType?
public init(data: TimerEventInfo? = nil, messageID: String? = nil, messageType: SessionMessageType? = nil) {
self.data = data
self.messageID = messageID
self.messageType = messageType
}
public init(from decoder: Decoder) throws {
let values = try decoder.container(keyedBy: StringCodingKey.self)
self.data = try values.decodeIfPresent(TimerEventInfo.self, forKey: "Data")
self.messageID = try values.decodeIfPresent(String.self, forKey: "MessageId")
self.messageType = try values.decodeIfPresent(SessionMessageType.self, forKey: "MessageType")
}
public func encode(to encoder: Encoder) throws {
var values = encoder.container(keyedBy: StringCodingKey.self)
try values.encodeIfPresent(data, forKey: "Data")
try values.encodeIfPresent(messageID, forKey: "MessageId")
try values.encodeIfPresent(messageType, forKey: "MessageType")
}
}