Files
plexswift/Sources/Plexswift/models/operations/GetRecentlyAddedOperator.swift

27 lines
598 B
Swift

// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
import Foundation
extension Operations {
/// A model object
public struct GetRecentlyAddedOperator {
public let key: String
public let title: String
/// Creates an object with the specified parameters
///
///
public init(key: String, title: String) {
self.key = key
self.title = title
}
}}
extension Operations.GetRecentlyAddedOperator: Codable {
enum CodingKeys: String, CodingKey {
case key
case title
}
}