generated/api/Models/Components1Prb9OySchemasGetjobsPropertiesJobsItemsPropertiesJobsummaryPropertiesUsername.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 Components1Prb9OySchemasGetjobsPropertiesJobsItemsPropertiesJobsummaryPropertiesUsername : Commvault.Powershell.Models.IComponents1Prb9OySchemasGetjobsPropertiesJobsItemsPropertiesJobsummaryPropertiesUsername, Commvault.Powershell.Models.IComponents1Prb9OySchemasGetjobsPropertiesJobsItemsPropertiesJobsummaryPropertiesUsernameInternal { /// <summary>Backing field for <see cref="UserId" /> property.</summary> private long? _userId; [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public long? UserId { get => this._userId; set => this._userId = value; } /// <summary>Backing field for <see cref="UserName" /> property.</summary> private string _userName; [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public string UserName { get => this._userName; set => this._userName = value; } /// <summary> /// Creates an new <see cref="Components1Prb9OySchemasGetjobsPropertiesJobsItemsPropertiesJobsummaryPropertiesUsername" /> /// instance. /// </summary> public Components1Prb9OySchemasGetjobsPropertiesJobsItemsPropertiesJobsummaryPropertiesUsername() { } } public partial interface IComponents1Prb9OySchemasGetjobsPropertiesJobsItemsPropertiesJobsummaryPropertiesUsername : Commvault.Powershell.Runtime.IJsonSerializable { [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Description = @"", SerializedName = @"userId", PossibleTypes = new [] { typeof(long) })] long? UserId { get; set; } [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Description = @"", SerializedName = @"userName", PossibleTypes = new [] { typeof(string) })] string UserName { get; set; } } internal partial interface IComponents1Prb9OySchemasGetjobsPropertiesJobsItemsPropertiesJobsummaryPropertiesUsernameInternal { long? UserId { get; set; } string UserName { get; set; } } } |