generated/api/Models/PeriodicMonitorDeleteResponse.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>The response of the delete periodic replication pair request</summary>
    public partial class PeriodicMonitorDeleteResponse :
        Commvault.Powershell.Models.IPeriodicMonitorDeleteResponse,
        Commvault.Powershell.Models.IPeriodicMonitorDeleteResponseInternal
    {

        /// <summary>Backing field for <see cref="JobId" /> property.</summary>
        private long? _jobId;

        /// <summary>The job id of the delete pair request</summary>
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public long? JobId { get => this._jobId; set => this._jobId = value; }

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

        }
    }
    /// The response of the delete periodic replication pair request
    public partial interface IPeriodicMonitorDeleteResponse :
        Commvault.Powershell.Runtime.IJsonSerializable
    {
        /// <summary>The job id of the delete pair request</summary>
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"The job id of the delete pair request",
        SerializedName = @"jobId",
        PossibleTypes = new [] { typeof(long) })]
        long? JobId { get; set; }

    }
    /// The response of the delete periodic replication pair request
    internal partial interface IPeriodicMonitorDeleteResponseInternal

    {
        /// <summary>The job id of the delete pair request</summary>
        long? JobId { get; set; }

    }
}