generated/api/Models/AlertIds.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>Array of ids of an entity</summary>
    public partial class AlertIds :
        Commvault.Powershell.Models.IAlertIds,
        Commvault.Powershell.Models.IAlertIdsInternal
    {

        /// <summary>Backing field for <see cref="AlertId" /> property.</summary>
        private long[] _alertId;

        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public long[] AlertId { get => this._alertId; set => this._alertId = value; }

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

        }
    }
    /// Array of ids of an entity
    public partial interface IAlertIds :
        Commvault.Powershell.Runtime.IJsonSerializable
    {
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"",
        SerializedName = @"alertId",
        PossibleTypes = new [] { typeof(long) })]
        long[] AlertId { get; set; }

    }
    /// Array of ids of an entity
    internal partial interface IAlertIdsInternal

    {
        long[] AlertId { get; set; }

    }
}