// Copyright (C) 2024, The Duplicati Team
// https://duplicati.com, hello@duplicati.com
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
using System;
namespace Duplicati.Server.Serialization.Interface
{
///
/// Describes a notification
///
public interface INotification
{
///
/// The notification unique ID
///
long ID { get; set; }
///
/// The notification type
///
NotificationType Type { get; set; }
///
/// The notification title
///
string Title { get; set; }
///
/// The notification message
///
string Message { get; set; }
///
/// The serialized exception data, if any
///
string Exception { get; set; }
///
/// The ID of the backup that the notification belongs to
///
string BackupID { get; set; }
///
/// The action for the notification
///
string Action { get; set; }
///
/// When the notification was emitted
///
DateTime Timestamp { get; set; }
///
/// The ID of the log entry that relates to this message, if any
///
/// The log entry identifier.
string LogEntryID { get; set; }
///
/// The ID of the event that triggered this notification
///
string MessageID { get; set; }
///
/// The logtag of the error or event that triggered this notification
///
string MessageLogTag { get; set; }
}
}