mirror of
https://github.com/LukeHagar/plexswift.git
synced 2025-12-09 12:47:44 +00:00
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.314.2
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
|
||||
|
||||
import Foundation
|
||||
|
||||
extension Operations {
|
||||
/// A model object
|
||||
public struct GetSessionHistoryRequest: APIValue {
|
||||
/// Filter results by those that are related to a specific users id
|
||||
///
|
||||
public let accountId: Int?
|
||||
/// Filters content by field and direction/equality
|
||||
/// (Unknown if viewedAt is the only supported column)
|
||||
///
|
||||
public let filter: Operations.Filter?
|
||||
/// Filters the results based on the id of a valid library section
|
||||
///
|
||||
public let librarySectionID: Int?
|
||||
/// Sorts the results by the specified field followed by the direction (asc, desc)
|
||||
///
|
||||
public let sort: String?
|
||||
|
||||
/// Creates an object with the specified parameters
|
||||
///
|
||||
/// - Parameter accountId: Filter results by those that are related to a specific users id
|
||||
///
|
||||
/// - Parameter filter: Filters content by field and direction/equality
|
||||
/// (Unknown if viewedAt is the only supported column)
|
||||
///
|
||||
/// - Parameter librarySectionID: Filters the results based on the id of a valid library section
|
||||
///
|
||||
/// - Parameter sort: Sorts the results by the specified field followed by the direction (asc, desc)
|
||||
///
|
||||
///
|
||||
public init(accountId: Int? = nil, filter: Operations.Filter? = nil, librarySectionID: Int? = nil, sort: String? = nil) {
|
||||
self.accountId = accountId
|
||||
self.filter = filter
|
||||
self.librarySectionID = librarySectionID
|
||||
self.sort = sort
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user