Files
plexswift/Sources/Plexswift/models/operations/LogLineResponseBody.swift
2024-04-11 11:10:38 -05:00

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