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.308.1
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
|
||||
|
||||
import Foundation
|
||||
|
||||
extension Operations {
|
||||
/// Watchlist Data
|
||||
public struct GetWatchlistResponseBody {
|
||||
public let identifier: String?
|
||||
public let librarySectionID: String?
|
||||
public let librarySectionTitle: String?
|
||||
public let metadata: [Operations.Metadata]?
|
||||
public let offset: Int?
|
||||
public let size: Int?
|
||||
public let totalSize: Int?
|
||||
|
||||
/// Creates an object with the specified parameters
|
||||
///
|
||||
///
|
||||
public init(identifier: String? = nil, librarySectionID: String? = nil, librarySectionTitle: String? = nil, metadata: [Operations.Metadata]? = nil, offset: Int? = nil, size: Int? = nil, totalSize: Int? = nil) {
|
||||
self.identifier = identifier
|
||||
self.librarySectionID = librarySectionID
|
||||
self.librarySectionTitle = librarySectionTitle
|
||||
self.metadata = metadata
|
||||
self.offset = offset
|
||||
self.size = size
|
||||
self.totalSize = totalSize
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
extension Operations.GetWatchlistResponseBody: Codable {
|
||||
enum CodingKeys: String, CodingKey {
|
||||
case identifier
|
||||
case librarySectionID
|
||||
case librarySectionTitle
|
||||
case metadata = "Metadata"
|
||||
case offset
|
||||
case size
|
||||
case totalSize
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user