@jellyfin/sdk
Version:
A TypeScript SDK for Jellyfin.
56 lines (55 loc) • 1.7 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/.
*/
import type { CodecType } from './codec-type';
import type { ProfileCondition } from './profile-condition';
/**
* Defines the MediaBrowser.Model.Dlna.CodecProfile.
* @export
* @interface CodecProfile
*/
export interface CodecProfile {
/**
*
* @type {CodecType}
* @memberof CodecProfile
*/
'Type'?: CodecType;
/**
* Gets or sets the list of MediaBrowser.Model.Dlna.ProfileCondition which this profile must meet.
* @type {Array<ProfileCondition>}
* @memberof CodecProfile
*/
'Conditions'?: Array<ProfileCondition>;
/**
* Gets or sets the list of MediaBrowser.Model.Dlna.ProfileCondition to apply if this profile is met.
* @type {Array<ProfileCondition>}
* @memberof CodecProfile
*/
'ApplyConditions'?: Array<ProfileCondition>;
/**
* Gets or sets the codec(s) that this profile applies to.
* @type {string}
* @memberof CodecProfile
*/
'Codec'?: string | null;
/**
* Gets or sets the container(s) which this profile will be applied to.
* @type {string}
* @memberof CodecProfile
*/
'Container'?: string | null;
/**
* Gets or sets the sub-container(s) which this profile will be applied to.
* @type {string}
* @memberof CodecProfile
*/
'SubContainer'?: string | null;
}