generated/api/Models/TapeListResp.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;

    public partial class TapeListResp :
        Commvault.Powershell.Models.ITapeListResp,
        Commvault.Powershell.Models.ITapeListRespInternal
    {

        /// <summary>Backing field for <see cref="TapeStorage" /> property.</summary>
        private Commvault.Powershell.Models.ITapeSummary[] _tapeStorage;

        /// <summary>List of tapes</summary>
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public Commvault.Powershell.Models.ITapeSummary[] TapeStorage { get => this._tapeStorage; set => this._tapeStorage = value; }

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

        }
    }
    public partial interface ITapeListResp :
        Commvault.Powershell.Runtime.IJsonSerializable
    {
        /// <summary>List of tapes</summary>
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"List of tapes",
        SerializedName = @"tapeStorage",
        PossibleTypes = new [] { typeof(Commvault.Powershell.Models.ITapeSummary) })]
        Commvault.Powershell.Models.ITapeSummary[] TapeStorage { get; set; }

    }
    internal partial interface ITapeListRespInternal

    {
        /// <summary>List of tapes</summary>
        Commvault.Powershell.Models.ITapeSummary[] TapeStorage { get; set; }

    }
}