mirror of
https://github.com/LukeHagar/plexswift.git
synced 2025-12-07 12:47:45 +00:00
ci: regenerated with OpenAPI Doc 0.0.3, Speakeasy CLI 1.200.0
This commit is contained in:
51
Sources/Plexswift/models/operations/GetLibraryHubsPart.swift
Normal file
51
Sources/Plexswift/models/operations/GetLibraryHubsPart.swift
Normal file
@@ -0,0 +1,51 @@
|
||||
// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
|
||||
|
||||
import Foundation
|
||||
|
||||
extension Operations {
|
||||
/// A model object
|
||||
public struct GetLibraryHubsPart {
|
||||
public let audioProfile: String?
|
||||
public let container: String?
|
||||
public let duration: Int?
|
||||
public let file: String?
|
||||
public let has64bitOffsets: Bool?
|
||||
public let id: Int?
|
||||
public let key: String?
|
||||
public let optimizedForStreaming: Bool?
|
||||
public let size: Int?
|
||||
public let videoProfile: String?
|
||||
|
||||
/// Creates an object with the specified parameters
|
||||
///
|
||||
///
|
||||
public init(audioProfile: String? = nil, container: String? = nil, duration: Int? = nil, file: String? = nil, has64bitOffsets: Bool? = nil, id: Int? = nil, key: String? = nil, optimizedForStreaming: Bool? = nil, size: Int? = nil, videoProfile: String? = nil) {
|
||||
self.audioProfile = audioProfile
|
||||
self.container = container
|
||||
self.duration = duration
|
||||
self.file = file
|
||||
self.has64bitOffsets = has64bitOffsets
|
||||
self.id = id
|
||||
self.key = key
|
||||
self.optimizedForStreaming = optimizedForStreaming
|
||||
self.size = size
|
||||
self.videoProfile = videoProfile
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
extension Operations.GetLibraryHubsPart: Codable {
|
||||
enum CodingKeys: String, CodingKey {
|
||||
case audioProfile
|
||||
case container
|
||||
case duration
|
||||
case file
|
||||
case has64bitOffsets
|
||||
case id
|
||||
case key
|
||||
case optimizedForStreaming
|
||||
case size
|
||||
case videoProfile
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user