/* 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 { NotificationLevel } from './notification-level'; /** * The notification DTO. * @export * @interface NotificationDto */ export interface NotificationDto { /** * Gets or sets the notification ID. Defaults to an empty string. * @type {string} * @memberof NotificationDto */ 'Id'?: string; /** * Gets or sets the notification\'s user ID. Defaults to an empty string. * @type {string} * @memberof NotificationDto */ 'UserId'?: string; /** * Gets or sets the notification date. * @type {string} * @memberof NotificationDto */ 'Date'?: string; /** * Gets or sets a value indicating whether the notification has been read. Defaults to false. * @type {boolean} * @memberof NotificationDto */ 'IsRead'?: boolean; /** * Gets or sets the notification\'s name. Defaults to an empty string. * @type {string} * @memberof NotificationDto */ 'Name'?: string; /** * Gets or sets the notification\'s description. Defaults to an empty string. * @type {string} * @memberof NotificationDto */ 'Description'?: string; /** * Gets or sets the notification\'s URL. Defaults to an empty string. * @type {string} * @memberof NotificationDto */ 'Url'?: string; /** * * @type {NotificationLevel} * @memberof NotificationDto */ 'Level'?: NotificationLevel; }