/* tslint:disable */ /* eslint-disable */ /** * 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} * @memberof NotificationOption */ 'DisabledMonitorUsers'?: Array; /** * Gets or sets user Ids to send to (if SendToUserMode == Custom). * @type {Array} * @memberof NotificationOption */ 'SendToUsers'?: Array; /** * 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} * @memberof NotificationOption */ 'DisabledServices'?: Array; /** * * @type {SendToUserType} * @memberof NotificationOption */ 'SendToUserMode'?: SendToUserType; }