generated/api/Models/CompareXmlResp.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>This is the result of two objects comparision</summary>
    public partial class CompareXmlResp :
        Commvault.Powershell.Models.ICompareXmlResp,
        Commvault.Powershell.Models.ICompareXmlRespInternal
    {

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

        /// <summary>difference details in json format</summary>
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public string Result { get => this._result; set => this._result = value; }

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

        }
    }
    /// This is the result of two objects comparision
    public partial interface ICompareXmlResp :
        Commvault.Powershell.Runtime.IJsonSerializable
    {
        /// <summary>difference details in json format</summary>
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"difference details in json format",
        SerializedName = @"result",
        PossibleTypes = new [] { typeof(string) })]
        string Result { get; set; }

    }
    /// This is the result of two objects comparision
    internal partial interface ICompareXmlRespInternal

    {
        /// <summary>difference details in json format</summary>
        string Result { get; set; }

    }
}