generated/api/Models/GetAllApplicableAgentResp.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>List of associated agents</summary>
    public partial class GetAllApplicableAgentResp :
        Commvault.Powershell.Models.IGetAllApplicableAgentResp,
        Commvault.Powershell.Models.IGetAllApplicableAgentRespInternal
    {

        /// <summary>Backing field for <see cref="AgentDetails" /> property.</summary>
        private Commvault.Powershell.Models.IAgentDetails[] _agentDetails;

        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public Commvault.Powershell.Models.IAgentDetails[] AgentDetails { get => this._agentDetails; set => this._agentDetails = value; }

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

        }
    }
    /// List of associated agents
    public partial interface IGetAllApplicableAgentResp :
        Commvault.Powershell.Runtime.IJsonSerializable
    {
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"",
        SerializedName = @"agentDetails",
        PossibleTypes = new [] { typeof(Commvault.Powershell.Models.IAgentDetails) })]
        Commvault.Powershell.Models.IAgentDetails[] AgentDetails { get; set; }

    }
    /// List of associated agents
    internal partial interface IGetAllApplicableAgentRespInternal

    {
        Commvault.Powershell.Models.IAgentDetails[] AgentDetails { get; set; }

    }
}