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

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