Files
plexswift/Sources/Plexswift/models/operations/GetMetadataChildrenDirectory.swift
2024-04-11 11:10:38 -05:00

37 lines
1002 B
Swift

// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
import Foundation
extension Operations {
/// A model object
public struct GetMetadataChildrenDirectory {
public let key: String?
public let leafCount: Int?
public let thumb: String?
public let title: String?
public let viewedLeafCount: Int?
/// Creates an object with the specified parameters
///
///
public init(key: String? = nil, leafCount: Int? = nil, thumb: String? = nil, title: String? = nil, viewedLeafCount: Int? = nil) {
self.key = key
self.leafCount = leafCount
self.thumb = thumb
self.title = title
self.viewedLeafCount = viewedLeafCount
}
}
}
extension Operations.GetMetadataChildrenDirectory: Codable {
enum CodingKeys: String, CodingKey {
case key
case leafCount
case thumb
case title
case viewedLeafCount
}
}