generated/api/Models/UpdateTriggeredAlertsNotes.cs

// Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.9.4, generator: @autorest/powershell@3.0.415)
// Changes may cause incorrect behavior and will be lost if the code is regenerated.

namespace Commvault.Powershell.Models
{
    using static Commvault.Powershell.Runtime.Extensions;

    /// <summary>UpdateTriggeredAlertsNotes</summary>
    public partial class UpdateTriggeredAlertsNotes :
        Commvault.Powershell.Models.IUpdateTriggeredAlertsNotes,
        Commvault.Powershell.Models.IUpdateTriggeredAlertsNotesInternal
    {

        /// <summary>Backing field for <see cref="Notes" /> property.</summary>
        private string _notes;

        /// <summary>
        /// Notes that you want to add to the triggered alerts. Leave it empty if you want to delete the alert
        /// </summary>
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public string Notes { get => this._notes; set => this._notes = value; }

        /// <summary>Creates an new <see cref="UpdateTriggeredAlertsNotes" /> instance.</summary>
        public UpdateTriggeredAlertsNotes()
        {

        }
    }
    /// UpdateTriggeredAlertsNotes
    public partial interface IUpdateTriggeredAlertsNotes :
        Commvault.Powershell.Runtime.IJsonSerializable
    {
        /// <summary>
        /// Notes that you want to add to the triggered alerts. Leave it empty if you want to delete the alert
        /// </summary>
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"Notes that you want to add to the triggered alerts. Leave it empty if you want to delete the alert",
        SerializedName = @"notes",
        PossibleTypes = new [] { typeof(string) })]
        string Notes { get; set; }

    }
    /// UpdateTriggeredAlertsNotes
    internal partial interface IUpdateTriggeredAlertsNotesInternal

    {
        /// <summary>
        /// Notes that you want to add to the triggered alerts. Leave it empty if you want to delete the alert
        /// </summary>
        string Notes { get; set; }

    }
}