generated/api/Models/ApplicationGroupListResp.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 ApplicationGroupListResp :
        Commvault.Powershell.Models.IApplicationGroupListResp,
        Commvault.Powershell.Models.IApplicationGroupListRespInternal
    {
 
        /// <summary>Backing field for <see cref="ApplicationGroupCount" /> property.</summary>
        private long? _applicationGroupCount;
 
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public long? ApplicationGroupCount { get => this._applicationGroupCount; set => this._applicationGroupCount = value; }
 
        /// <summary>Backing field for <see cref="ApplicationGroups" /> property.</summary>
        private System.Collections.Generic.List<Commvault.Powershell.Models.IApplicationGroupSummary> _applicationGroups;
 
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public System.Collections.Generic.List<Commvault.Powershell.Models.IApplicationGroupSummary> ApplicationGroups { get => this._applicationGroups; set => this._applicationGroups = value; }
 
        /// <summary>Creates an new <see cref="ApplicationGroupListResp" /> instance.</summary>
        public ApplicationGroupListResp()
        {
 
        }
    }
    public partial interface IApplicationGroupListResp :
        Commvault.Powershell.Runtime.IJsonSerializable
    {
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Read = true,
        Create = true,
        Update = true,
        Description = @"",
        SerializedName = @"applicationGroupCount",
        PossibleTypes = new [] { typeof(long) })]
        long? ApplicationGroupCount { get; set; }
 
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Read = true,
        Create = true,
        Update = true,
        Description = @"",
        SerializedName = @"applicationGroups",
        PossibleTypes = new [] { typeof(Commvault.Powershell.Models.IApplicationGroupSummary) })]
        System.Collections.Generic.List<Commvault.Powershell.Models.IApplicationGroupSummary> ApplicationGroups { get; set; }
 
    }
    internal partial interface IApplicationGroupListRespInternal
 
    {
        long? ApplicationGroupCount { get; set; }
 
        System.Collections.Generic.List<Commvault.Powershell.Models.IApplicationGroupSummary> ApplicationGroups { get; set; }
 
    }
}