generated/api/Models/SnapForceReq.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>snapForceReq</summary>
    public partial class SnapForceReq :
        Commvault.Powershell.Models.ISnapForceReq,
        Commvault.Powershell.Models.ISnapForceReqInternal
    {

        /// <summary>Backing field for <see cref="Volumes" /> property.</summary>
        private Commvault.Powershell.Models.ISnapVolumes[] _volumes;

        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public Commvault.Powershell.Models.ISnapVolumes[] Volumes { get => this._volumes; set => this._volumes = value; }

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

        }
    }
    /// snapForceReq
    public partial interface ISnapForceReq :
        Commvault.Powershell.Runtime.IJsonSerializable
    {
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"",
        SerializedName = @"volumes",
        PossibleTypes = new [] { typeof(Commvault.Powershell.Models.ISnapVolumes) })]
        Commvault.Powershell.Models.ISnapVolumes[] Volumes { get; set; }

    }
    /// snapForceReq
    internal partial interface ISnapForceReqInternal

    {
        Commvault.Powershell.Models.ISnapVolumes[] Volumes { get; set; }

    }
}