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

19 lines
603 B
Swift

// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
import Foundation
extension Operations {
/// A model object
public struct CheckForUpdatesRequest: APIValue {
/// Indicate that you want to start download any updates found.
public let download: Operations.Download?
/// Creates an object with the specified parameters
///
/// - Parameter download: Indicate that you want to start download any updates found.
///
public init(download: Operations.Download? = nil) {
self.download = download
}
}}