mirror of
https://github.com/LukeHagar/plexswift.git
synced 2025-12-06 12:47:44 +00:00
37 lines
915 B
Swift
37 lines
915 B
Swift
// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
|
|
|
|
import Foundation
|
|
|
|
extension Operations {
|
|
/// A model object
|
|
public struct GetMetadataDirector {
|
|
public let filter: String?
|
|
public let id: Int?
|
|
public let tag: String?
|
|
public let tagKey: String?
|
|
public let thumb: String?
|
|
|
|
/// Creates an object with the specified parameters
|
|
///
|
|
///
|
|
public init(filter: String? = nil, id: Int? = nil, tag: String? = nil, tagKey: String? = nil, thumb: String? = nil) {
|
|
self.filter = filter
|
|
self.id = id
|
|
self.tag = tag
|
|
self.tagKey = tagKey
|
|
self.thumb = thumb
|
|
}
|
|
}
|
|
}
|
|
|
|
extension Operations.GetMetadataDirector: Codable {
|
|
enum CodingKeys: String, CodingKey {
|
|
case filter
|
|
case id
|
|
case tag
|
|
case tagKey
|
|
case thumb
|
|
}
|
|
}
|
|
|