/* tslint:disable */ /* eslint-disable */ /** * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * Do not edit the class manually. * * Jellyfin API * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ /** * Class LibrarySummary. * @export * @interface ItemCounts */ export interface ItemCounts { /** * Gets or sets the movie count. * @type {number} * @memberof ItemCounts */ 'MovieCount'?: number; /** * Gets or sets the series count. * @type {number} * @memberof ItemCounts */ 'SeriesCount'?: number; /** * Gets or sets the episode count. * @type {number} * @memberof ItemCounts */ 'EpisodeCount'?: number; /** * Gets or sets the artist count. * @type {number} * @memberof ItemCounts */ 'ArtistCount'?: number; /** * Gets or sets the program count. * @type {number} * @memberof ItemCounts */ 'ProgramCount'?: number; /** * Gets or sets the trailer count. * @type {number} * @memberof ItemCounts */ 'TrailerCount'?: number; /** * Gets or sets the song count. * @type {number} * @memberof ItemCounts */ 'SongCount'?: number; /** * Gets or sets the album count. * @type {number} * @memberof ItemCounts */ 'AlbumCount'?: number; /** * Gets or sets the music video count. * @type {number} * @memberof ItemCounts */ 'MusicVideoCount'?: number; /** * Gets or sets the box set count. * @type {number} * @memberof ItemCounts */ 'BoxSetCount'?: number; /** * Gets or sets the book count. * @type {number} * @memberof ItemCounts */ 'BookCount'?: number; /** * Gets or sets the item count. * @type {number} * @memberof ItemCounts */ 'ItemCount'?: number; }