generated/api/Models/GetjobsJobsPropertiesItemsItem.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; public partial class GetjobsJobsPropertiesItemsItem : Commvault.Powershell.Models.IGetjobsJobsPropertiesItemsItem, Commvault.Powershell.Models.IGetjobsJobsPropertiesItemsItemInternal { /// <summary>Backing field for <see cref="ClientGroupId" /> property.</summary> private long? _clientGroupId; [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public long? ClientGroupId { get => this._clientGroupId; set => this._clientGroupId = value; } /// <summary>Backing field for <see cref="ClientGroupName" /> property.</summary> private string _clientGroupName; [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public string ClientGroupName { get => this._clientGroupName; set => this._clientGroupName = value; } /// <summary>Backing field for <see cref="Type" /> property.</summary> private long? _type; [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public long? Type { get => this._type; set => this._type = value; } /// <summary>Creates an new <see cref="GetjobsJobsPropertiesItemsItem" /> instance.</summary> public GetjobsJobsPropertiesItemsItem() { } } public partial interface IGetjobsJobsPropertiesItemsItem : Commvault.Powershell.Runtime.IJsonSerializable { [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Description = @"", SerializedName = @"clientGroupId", PossibleTypes = new [] { typeof(long) })] long? ClientGroupId { get; set; } [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Description = @"", SerializedName = @"clientGroupName", PossibleTypes = new [] { typeof(string) })] string ClientGroupName { get; set; } [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Description = @"", SerializedName = @"_type_", PossibleTypes = new [] { typeof(long) })] long? Type { get; set; } } internal partial interface IGetjobsJobsPropertiesItemsItemInternal { long? ClientGroupId { get; set; } string ClientGroupName { get; set; } long? Type { get; set; } } } |