@jellyfin/sdk
Version:
A TypeScript SDK for Jellyfin.
55 lines (54 loc) • 1.5 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 { SendToUserType } from './send-to-user-type';
/**
*
* @export
* @interface NotificationOption
*/
export interface NotificationOption {
/**
*
* @type {string}
* @memberof NotificationOption
*/
'Type'?: string | null;
/**
* Gets or sets user Ids to not monitor (it\'s opt out).
* @type {Array<string>}
* @memberof NotificationOption
*/
'DisabledMonitorUsers'?: Array<string>;
/**
* Gets or sets user Ids to send to (if SendToUserMode == Custom).
* @type {Array<string>}
* @memberof NotificationOption
*/
'SendToUsers'?: Array<string>;
/**
* Gets or sets a value indicating whether this MediaBrowser.Model.Notifications.NotificationOption is enabled.
* @type {boolean}
* @memberof NotificationOption
*/
'Enabled'?: boolean;
/**
* Gets or sets the disabled services.
* @type {Array<string>}
* @memberof NotificationOption
*/
'DisabledServices'?: Array<string>;
/**
*
* @type {SendToUserType}
* @memberof NotificationOption
*/
'SendToUserMode'?: SendToUserType;
}