mirror of
https://github.com/LukeHagar/plexswift.git
synced 2025-12-06 12:47:44 +00:00
39 lines
1.2 KiB
Swift
39 lines
1.2 KiB
Swift
// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
|
|
import Foundation
|
|
|
|
extension Operations {
|
|
/// A model object
|
|
public struct GetLibraryDetailsSort {
|
|
public let `default`: String?
|
|
public let defaultDirection: String?
|
|
public let descKey: String?
|
|
public let firstCharacterKey: String?
|
|
public let key: String?
|
|
public let title: String?
|
|
|
|
/// Creates an object with the specified parameters
|
|
///
|
|
///
|
|
public init(`default`: String? = nil, defaultDirection: String? = nil, descKey: String? = nil, firstCharacterKey: String? = nil, key: String? = nil, title: String? = nil) {
|
|
self.`default` = `default`
|
|
self.defaultDirection = defaultDirection
|
|
self.descKey = descKey
|
|
self.firstCharacterKey = firstCharacterKey
|
|
self.key = key
|
|
self.title = title
|
|
}
|
|
}}
|
|
|
|
extension Operations.GetLibraryDetailsSort: Codable {
|
|
enum CodingKeys: String, CodingKey {
|
|
case `default` = "default"
|
|
case defaultDirection
|
|
case descKey
|
|
case firstCharacterKey
|
|
case key
|
|
case title
|
|
}
|
|
}
|
|
|