generated/api/Models/GetArraysResp.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>Get list of all arrays</summary>
    public partial class GetArraysResp :
        Commvault.Powershell.Models.IGetArraysResp,
        Commvault.Powershell.Models.IGetArraysRespInternal
    {

        /// <summary>Backing field for <see cref="Arrays" /> property.</summary>
        private Commvault.Powershell.Models.IArrayLevel[] _arrays;

        /// <summary>List of arrays</summary>
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public Commvault.Powershell.Models.IArrayLevel[] Arrays { get => this._arrays; set => this._arrays = value; }

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

        }
    }
    /// Get list of all arrays
    public partial interface IGetArraysResp :
        Commvault.Powershell.Runtime.IJsonSerializable
    {
        /// <summary>List of arrays</summary>
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"List of arrays",
        SerializedName = @"arrays",
        PossibleTypes = new [] { typeof(Commvault.Powershell.Models.IArrayLevel) })]
        Commvault.Powershell.Models.IArrayLevel[] Arrays { get; set; }

    }
    /// Get list of all arrays
    internal partial interface IGetArraysRespInternal

    {
        /// <summary>List of arrays</summary>
        Commvault.Powershell.Models.IArrayLevel[] Arrays { get; set; }

    }
}