Files
plexswift/Sources/Plexswift/models/operations/GetGlobalHubsMediaContainer.swift

33 lines
890 B
Swift

// Code generated by Speakeasy (https://speakeasy.com). 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
}
}