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

92 lines
2.0 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 MediaAttachment.
*/
export class MediaAttachment {
/**
* Gets or sets the codec.
*/
'codec'?: string | null;
/**
* Gets or sets the codec tag.
*/
'codecTag'?: string | null;
/**
* Gets or sets the comment.
*/
'comment'?: string | null;
/**
* Gets or sets the index.
*/
'index'?: number;
/**
* Gets or sets the filename.
*/
'fileName'?: string | null;
/**
* Gets or sets the MIME type.
*/
'mimeType'?: string | null;
/**
* Gets or sets the delivery URL.
*/
'deliveryUrl'?: string | null;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "codec",
"baseName": "Codec",
"type": "string"
},
{
"name": "codecTag",
"baseName": "CodecTag",
"type": "string"
},
{
"name": "comment",
"baseName": "Comment",
"type": "string"
},
{
"name": "index",
"baseName": "Index",
"type": "number"
},
{
"name": "fileName",
"baseName": "FileName",
"type": "string"
},
{
"name": "mimeType",
"baseName": "MimeType",
"type": "string"
},
{
"name": "deliveryUrl",
"baseName": "DeliveryUrl",
"type": "string"
} ];
static getAttributeTypeMap() {
return MediaAttachment.attributeTypeMap;
}
}