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

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