mirror of
https://github.com/LukeHagar/plexswift.git
synced 2025-12-06 12:47:44 +00:00
42 lines
1.3 KiB
Swift
42 lines
1.3 KiB
Swift
// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
|
|
import Foundation
|
|
|
|
extension Operations {
|
|
/// A model object
|
|
public struct Feature {
|
|
public let type: String
|
|
public let action: [Operations.Action]?
|
|
public let directory: [Operations.GetMediaProvidersDirectory]?
|
|
public let flavor: String?
|
|
public let key: String?
|
|
public let scrobbleKey: String?
|
|
public let unscrobbleKey: String?
|
|
|
|
/// Creates an object with the specified parameters
|
|
///
|
|
///
|
|
public init(type: String, action: [Operations.Action]? = nil, directory: [Operations.GetMediaProvidersDirectory]? = nil, flavor: String? = nil, key: String? = nil, scrobbleKey: String? = nil, unscrobbleKey: String? = nil) {
|
|
self.type = type
|
|
self.action = action
|
|
self.directory = directory
|
|
self.flavor = flavor
|
|
self.key = key
|
|
self.scrobbleKey = scrobbleKey
|
|
self.unscrobbleKey = unscrobbleKey
|
|
}
|
|
}}
|
|
|
|
extension Operations.Feature: Codable {
|
|
enum CodingKeys: String, CodingKey {
|
|
case type
|
|
case action = "Action"
|
|
case directory = "Directory"
|
|
case flavor
|
|
case key
|
|
case scrobbleKey
|
|
case unscrobbleKey
|
|
}
|
|
}
|
|
|