@jellyfin/sdk
Version:
A TypeScript SDK for Jellyfin.
86 lines (85 loc) • 1.9 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/.
*/
/**
*
* @export
* @interface BoxSetInfo
*/
export interface BoxSetInfo {
/**
* Gets or sets the name.
* @type {string}
* @memberof BoxSetInfo
*/
'Name'?: string | null;
/**
* Gets or sets the original title.
* @type {string}
* @memberof BoxSetInfo
*/
'OriginalTitle'?: string | null;
/**
* Gets or sets the path.
* @type {string}
* @memberof BoxSetInfo
*/
'Path'?: string | null;
/**
* Gets or sets the metadata language.
* @type {string}
* @memberof BoxSetInfo
*/
'MetadataLanguage'?: string | null;
/**
* Gets or sets the metadata country code.
* @type {string}
* @memberof BoxSetInfo
*/
'MetadataCountryCode'?: string | null;
/**
* Gets or sets the provider ids.
* @type {{ [key: string]: string | null; }}
* @memberof BoxSetInfo
*/
'ProviderIds'?: {
[key: string]: string | null;
} | null;
/**
* Gets or sets the year.
* @type {number}
* @memberof BoxSetInfo
*/
'Year'?: number | null;
/**
*
* @type {number}
* @memberof BoxSetInfo
*/
'IndexNumber'?: number | null;
/**
*
* @type {number}
* @memberof BoxSetInfo
*/
'ParentIndexNumber'?: number | null;
/**
*
* @type {string}
* @memberof BoxSetInfo
*/
'PremiereDate'?: string | null;
/**
*
* @type {boolean}
* @memberof BoxSetInfo
*/
'IsAutomated'?: boolean;
}