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

24 lines
639 B
Swift

// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
import Foundation
extension Operations {
/// Bad Request - A parameter was not specified, or was specified incorrectly.
public struct GetServerListBadRequest {
public let errors: [Operations.GetServerListErrors]?
/// Creates a request model with the specified parameters
///
///
public init(errors: [Operations.GetServerListErrors]? = nil) {
self.errors = errors
}
}}
extension Operations.GetServerListBadRequest: Codable {
enum CodingKeys: String, CodingKey {
case errors
}
}