generated/api/Models/ManagePaths.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>Define migration paths to ensure proper mapping</summary>
    public partial class ManagePaths :
        Commvault.Powershell.Models.IManagePaths,
        Commvault.Powershell.Models.IManagePathsInternal
    {

        /// <summary>Backing field for <see cref="Pair" /> property.</summary>
        private Commvault.Powershell.Models.IMigrationPair[] _pair;

        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public Commvault.Powershell.Models.IMigrationPair[] Pair { get => this._pair; set => this._pair = value; }

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

        }
    }
    /// Define migration paths to ensure proper mapping
    public partial interface IManagePaths :
        Commvault.Powershell.Runtime.IJsonSerializable
    {
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"",
        SerializedName = @"pair",
        PossibleTypes = new [] { typeof(Commvault.Powershell.Models.IMigrationPair) })]
        Commvault.Powershell.Models.IMigrationPair[] Pair { get; set; }

    }
    /// Define migration paths to ensure proper mapping
    internal partial interface IManagePathsInternal

    {
        Commvault.Powershell.Models.IMigrationPair[] Pair { get; set; }

    }
}