Files
plexswift/Sources/Plexswift/models/operations/CheckForUpdatesRequest.swift
2024-03-18 14:51:32 -07:00

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
}
}
}