jellyfin-discord-bot/jellyfin/model/albumInfo.ts
2023-04-15 22:02:40 +02:00

138 lines
3.4 KiB
TypeScript

/**
* 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';
import { SongInfo } from './songInfo';
export class AlbumInfo {
/**
* Gets or sets the name.
*/
'name'?: string | null;
/**
* Gets or sets the original title.
*/
'originalTitle'?: string | null;
/**
* Gets or sets the path.
*/
'path'?: string | null;
/**
* Gets or sets the metadata language.
*/
'metadataLanguage'?: string | null;
/**
* Gets or sets the metadata country code.
*/
'metadataCountryCode'?: string | null;
/**
* Gets or sets the provider ids.
*/
'providerIds'?: { [key: string]: string; } | null;
/**
* Gets or sets the year.
*/
'year'?: number | null;
'indexNumber'?: number | null;
'parentIndexNumber'?: number | null;
'premiereDate'?: Date | null;
'isAutomated'?: boolean;
/**
* Gets or sets the album artist.
*/
'albumArtists'?: Array<string>;
/**
* Gets or sets the artist provider ids.
*/
'artistProviderIds'?: { [key: string]: string; };
'songInfos'?: Array<SongInfo>;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "name",
"baseName": "Name",
"type": "string"
},
{
"name": "originalTitle",
"baseName": "OriginalTitle",
"type": "string"
},
{
"name": "path",
"baseName": "Path",
"type": "string"
},
{
"name": "metadataLanguage",
"baseName": "MetadataLanguage",
"type": "string"
},
{
"name": "metadataCountryCode",
"baseName": "MetadataCountryCode",
"type": "string"
},
{
"name": "providerIds",
"baseName": "ProviderIds",
"type": "{ [key: string]: string; }"
},
{
"name": "year",
"baseName": "Year",
"type": "number"
},
{
"name": "indexNumber",
"baseName": "IndexNumber",
"type": "number"
},
{
"name": "parentIndexNumber",
"baseName": "ParentIndexNumber",
"type": "number"
},
{
"name": "premiereDate",
"baseName": "PremiereDate",
"type": "Date"
},
{
"name": "isAutomated",
"baseName": "IsAutomated",
"type": "boolean"
},
{
"name": "albumArtists",
"baseName": "AlbumArtists",
"type": "Array<string>"
},
{
"name": "artistProviderIds",
"baseName": "ArtistProviderIds",
"type": "{ [key: string]: string; }"
},
{
"name": "songInfos",
"baseName": "SongInfos",
"type": "Array<SongInfo>"
} ];
static getAttributeTypeMap() {
return AlbumInfo.attributeTypeMap;
}
}