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

25 lines
687 B
Swift

// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
import Foundation
extension Operations {
/// Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
public struct StartUniversalTranscodeResponseBody {
public let errors: [Operations.StartUniversalTranscodeErrors]?
/// Creates an object with the specified parameters
///
///
public init(errors: [Operations.StartUniversalTranscodeErrors]? = nil) {
self.errors = errors
}
}
}
extension Operations.StartUniversalTranscodeResponseBody: Codable {
enum CodingKeys: String, CodingKey {
case errors
}
}