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

117 lines
2.7 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 { ImageType } from './imageType';
import { RatingType } from './ratingType';
/**
* Class RemoteImageInfo.
*/
export class RemoteImageInfo {
/**
* Gets or sets the name of the provider.
*/
'providerName'?: string | null;
/**
* Gets or sets the URL.
*/
'url'?: string | null;
/**
* Gets or sets a url used for previewing a smaller version.
*/
'thumbnailUrl'?: string | null;
/**
* Gets or sets the height.
*/
'height'?: number | null;
/**
* Gets or sets the width.
*/
'width'?: number | null;
/**
* Gets or sets the community rating.
*/
'communityRating'?: number | null;
/**
* Gets or sets the vote count.
*/
'voteCount'?: number | null;
/**
* Gets or sets the language.
*/
'language'?: string | null;
'type'?: ImageType;
'ratingType'?: RatingType;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "providerName",
"baseName": "ProviderName",
"type": "string"
},
{
"name": "url",
"baseName": "Url",
"type": "string"
},
{
"name": "thumbnailUrl",
"baseName": "ThumbnailUrl",
"type": "string"
},
{
"name": "height",
"baseName": "Height",
"type": "number"
},
{
"name": "width",
"baseName": "Width",
"type": "number"
},
{
"name": "communityRating",
"baseName": "CommunityRating",
"type": "number"
},
{
"name": "voteCount",
"baseName": "VoteCount",
"type": "number"
},
{
"name": "language",
"baseName": "Language",
"type": "string"
},
{
"name": "type",
"baseName": "Type",
"type": "ImageType"
},
{
"name": "ratingType",
"baseName": "RatingType",
"type": "RatingType"
} ];
static getAttributeTypeMap() {
return RemoteImageInfo.attributeTypeMap;
}
}
export namespace RemoteImageInfo {
}