@jellyfin/sdk
Version:
A TypeScript SDK for Jellyfin.
44 lines (43 loc) • 1.35 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 { DlnaProfileType } from './dlna-profile-type';
import type { ProfileCondition } from './profile-condition';
/**
* Defines the MediaBrowser.Model.Dlna.ContainerProfile.
* @export
* @interface ContainerProfile
*/
export interface ContainerProfile {
/**
*
* @type {DlnaProfileType}
* @memberof ContainerProfile
*/
'Type'?: DlnaProfileType;
/**
* Gets or sets the list of MediaBrowser.Model.Dlna.ProfileCondition which this container will be applied to.
* @type {Array<ProfileCondition>}
* @memberof ContainerProfile
*/
'Conditions'?: Array<ProfileCondition>;
/**
* Gets or sets the container(s) which this container must meet.
* @type {string}
* @memberof ContainerProfile
*/
'Container'?: string | null;
/**
* Gets or sets the sub container(s) which this container must meet.
* @type {string}
* @memberof ContainerProfile
*/
'SubContainer'?: string | null;
}