@jellyfin/sdk
Version:
A TypeScript SDK for Jellyfin.
60 lines (59 loc) • 1.42 kB
TypeScript
/**
* 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 MediaAttachment.
* @export
* @interface MediaAttachment
*/
export interface MediaAttachment {
/**
* Gets or sets the codec.
* @type {string}
* @memberof MediaAttachment
*/
'Codec'?: string | null;
/**
* Gets or sets the codec tag.
* @type {string}
* @memberof MediaAttachment
*/
'CodecTag'?: string | null;
/**
* Gets or sets the comment.
* @type {string}
* @memberof MediaAttachment
*/
'Comment'?: string | null;
/**
* Gets or sets the index.
* @type {number}
* @memberof MediaAttachment
*/
'Index'?: number;
/**
* Gets or sets the filename.
* @type {string}
* @memberof MediaAttachment
*/
'FileName'?: string | null;
/**
* Gets or sets the MIME type.
* @type {string}
* @memberof MediaAttachment
*/
'MimeType'?: string | null;
/**
* Gets or sets the delivery URL.
* @type {string}
* @memberof MediaAttachment
*/
'DeliveryUrl'?: string | null;
}