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

25 lines
669 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 GetLibraryItemsLibraryResponseBody {
public let errors: [Operations.GetLibraryItemsErrors]?
/// Creates an object with the specified parameters
///
///
public init(errors: [Operations.GetLibraryItemsErrors]? = nil) {
self.errors = errors
}
}
}
extension Operations.GetLibraryItemsLibraryResponseBody: Codable {
enum CodingKeys: String, CodingKey {
case errors
}
}