generated/api/Models/MigrationPair.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>MigrationPair</summary>
    public partial class MigrationPair :
        Commvault.Powershell.Models.IMigrationPair,
        Commvault.Powershell.Models.IMigrationPairInternal
    {

        /// <summary>Backing field for <see cref="DestinationPath" /> property.</summary>
        private string _destinationPath;

        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public string DestinationPath { get => this._destinationPath; set => this._destinationPath = value; }

        /// <summary>Backing field for <see cref="SourcePath" /> property.</summary>
        private string _sourcePath;

        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public string SourcePath { get => this._sourcePath; set => this._sourcePath = value; }

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

        }
    }
    /// MigrationPair
    public partial interface IMigrationPair :
        Commvault.Powershell.Runtime.IJsonSerializable
    {
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"",
        SerializedName = @"DestinationPath",
        PossibleTypes = new [] { typeof(string) })]
        string DestinationPath { get; set; }

        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"",
        SerializedName = @"SourcePath",
        PossibleTypes = new [] { typeof(string) })]
        string SourcePath { get; set; }

    }
    /// MigrationPair
    internal partial interface IMigrationPairInternal

    {
        string DestinationPath { get; set; }

        string SourcePath { get; set; }

    }
}