mirror of
https://github.com/LukeHagar/plexswift.git
synced 2025-12-06 20:57:46 +00:00
34 lines
894 B
Swift
34 lines
894 B
Swift
// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
|
|
|
|
import Foundation
|
|
|
|
extension Operations {
|
|
/// A model object
|
|
public struct GetGlobalHubsMediaContainer {
|
|
public let allowSync: Bool?
|
|
public let hub: [Operations.Hub]?
|
|
public let identifier: String?
|
|
public let size: Int?
|
|
|
|
/// Creates an object with the specified parameters
|
|
///
|
|
///
|
|
public init(allowSync: Bool? = nil, hub: [Operations.Hub]? = nil, identifier: String? = nil, size: Int? = nil) {
|
|
self.allowSync = allowSync
|
|
self.hub = hub
|
|
self.identifier = identifier
|
|
self.size = size
|
|
}
|
|
}
|
|
}
|
|
|
|
extension Operations.GetGlobalHubsMediaContainer: Codable {
|
|
enum CodingKeys: String, CodingKey {
|
|
case allowSync
|
|
case hub = "Hub"
|
|
case identifier
|
|
case size
|
|
}
|
|
}
|
|
|