generated/api/Models/ApplicationListResp.cs

// Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.8.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;

    public partial class ApplicationListResp :
        Commvault.Powershell.Models.IApplicationListResp,
        Commvault.Powershell.Models.IApplicationListRespInternal
    {

        /// <summary>Backing field for <see cref="Applications" /> property.</summary>
        private Commvault.Powershell.Models.IApplicationSummary[] _applications;

        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public Commvault.Powershell.Models.IApplicationSummary[] Applications { get => this._applications; set => this._applications = value; }

        /// <summary>Backing field for <see cref="ApplicationsCount" /> property.</summary>
        private long? _applicationsCount;

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

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

        }
    }
    public partial interface IApplicationListResp :
        Commvault.Powershell.Runtime.IJsonSerializable
    {
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"",
        SerializedName = @"applications",
        PossibleTypes = new [] { typeof(Commvault.Powershell.Models.IApplicationSummary) })]
        Commvault.Powershell.Models.IApplicationSummary[] Applications { get; set; }

        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"",
        SerializedName = @"applicationsCount",
        PossibleTypes = new [] { typeof(long) })]
        long? ApplicationsCount { get; set; }

    }
    internal partial interface IApplicationListRespInternal

    {
        Commvault.Powershell.Models.IApplicationSummary[] Applications { get; set; }

        long? ApplicationsCount { get; set; }

    }
}