mirror of
https://github.com/LukeHagar/plexswift.git
synced 2025-12-06 04:20:52 +00:00
20 lines
607 B
Swift
20 lines
607 B
Swift
// Code generated by Speakeasy (https://speakeasyapi.dev). 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
|
|
}
|
|
}
|
|
}
|