jellyflood/JellyfinPlayer/Swaggers/Models/AllOfAllThemeMediaResultThe...

39 lines
1.0 KiB
Swift

//
// AllOfAllThemeMediaResultThemeSongsResult.swift
//
// Generated by swagger-codegen
// https://github.com/swagger-api/swagger-codegen
//
import Foundation
/** Class ThemeMediaResult. */
public struct AllOfAllThemeMediaResultThemeSongsResult: Codable {
/** Gets or sets the items. */
public var items: [BaseItemDto]?
/** The total number of records available. */
public var totalRecordCount: Int?
/** The index of the first record in Items. */
public var startIndex: Int?
/** Gets or sets the owner id. */
public var ownerId: UUID?
public init(items: [BaseItemDto]? = nil, totalRecordCount: Int? = nil, startIndex: Int? = nil, ownerId: UUID? = nil) {
self.items = items
self.totalRecordCount = totalRecordCount
self.startIndex = startIndex
self.ownerId = ownerId
}
public enum CodingKeys: String, CodingKey {
case items = "Items"
case totalRecordCount = "TotalRecordCount"
case startIndex = "StartIndex"
case ownerId = "OwnerId"
}
}