generated/api/Models/ApplicationListResp.cs

// Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.10.2, generator: @autorest/powershell@4.0.708)
// 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 System.Collections.Generic.List<Commvault.Powershell.Models.IApplicationSummary> _applications;
 
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public System.Collections.Generic.List<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,
        Read = true,
        Create = true,
        Update = true,
        Description = @"",
        SerializedName = @"applications",
        PossibleTypes = new [] { typeof(Commvault.Powershell.Models.IApplicationSummary) })]
        System.Collections.Generic.List<Commvault.Powershell.Models.IApplicationSummary> Applications { get; set; }
 
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Read = true,
        Create = true,
        Update = true,
        Description = @"",
        SerializedName = @"applicationsCount",
        PossibleTypes = new [] { typeof(long) })]
        long? ApplicationsCount { get; set; }
 
    }
    internal partial interface IApplicationListRespInternal
 
    {
        System.Collections.Generic.List<Commvault.Powershell.Models.IApplicationSummary> Applications { get; set; }
 
        long? ApplicationsCount { get; set; }
 
    }
}