generated/api/Models/GetRunningJobsIdList.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>List of running jobs</summary>
    public partial class GetRunningJobsIdList :
        Commvault.Powershell.Models.IGetRunningJobsIdList,
        Commvault.Powershell.Models.IGetRunningJobsIdListInternal
    {

        /// <summary>Backing field for <see cref="JobIds" /> property.</summary>
        private long[] _jobIds;

        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public long[] JobIds { get => this._jobIds; set => this._jobIds = value; }

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

        }
    }
    /// List of running jobs
    public partial interface IGetRunningJobsIdList :
        Commvault.Powershell.Runtime.IJsonSerializable
    {
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"",
        SerializedName = @"jobIds",
        PossibleTypes = new [] { typeof(long) })]
        long[] JobIds { get; set; }

    }
    /// List of running jobs
    internal partial interface IGetRunningJobsIdListInternal

    {
        long[] JobIds { get; set; }

    }
}