jellyfin-discord-bot/jellyfin/model/itemCounts.ts

137 lines
3.1 KiB
TypeScript
Raw Normal View History

2023-04-15 22:02:40 +02:00
/**
* Jellyfin API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 10.8.9
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { RequestFile } from './models';
/**
* Class LibrarySummary.
*/
export class ItemCounts {
/**
* Gets or sets the movie count.
*/
'movieCount'?: number;
/**
* Gets or sets the series count.
*/
'seriesCount'?: number;
/**
* Gets or sets the episode count.
*/
'episodeCount'?: number;
/**
* Gets or sets the artist count.
*/
'artistCount'?: number;
/**
* Gets or sets the program count.
*/
'programCount'?: number;
/**
* Gets or sets the trailer count.
*/
'trailerCount'?: number;
/**
* Gets or sets the song count.
*/
'songCount'?: number;
/**
* Gets or sets the album count.
*/
'albumCount'?: number;
/**
* Gets or sets the music video count.
*/
'musicVideoCount'?: number;
/**
* Gets or sets the box set count.
*/
'boxSetCount'?: number;
/**
* Gets or sets the book count.
*/
'bookCount'?: number;
/**
* Gets or sets the item count.
*/
'itemCount'?: number;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "movieCount",
"baseName": "MovieCount",
"type": "number"
},
{
"name": "seriesCount",
"baseName": "SeriesCount",
"type": "number"
},
{
"name": "episodeCount",
"baseName": "EpisodeCount",
"type": "number"
},
{
"name": "artistCount",
"baseName": "ArtistCount",
"type": "number"
},
{
"name": "programCount",
"baseName": "ProgramCount",
"type": "number"
},
{
"name": "trailerCount",
"baseName": "TrailerCount",
"type": "number"
},
{
"name": "songCount",
"baseName": "SongCount",
"type": "number"
},
{
"name": "albumCount",
"baseName": "AlbumCount",
"type": "number"
},
{
"name": "musicVideoCount",
"baseName": "MusicVideoCount",
"type": "number"
},
{
"name": "boxSetCount",
"baseName": "BoxSetCount",
"type": "number"
},
{
"name": "bookCount",
"baseName": "BookCount",
"type": "number"
},
{
"name": "itemCount",
"baseName": "ItemCount",
"type": "number"
} ];
static getAttributeTypeMap() {
return ItemCounts.attributeTypeMap;
}
}