generated/api/Models/LocationSummary.cs
// Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.10.2, generator: @autorest/powershell@4.0.708) // 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>Summary of a location in a region</summary> public partial class LocationSummary : Commvault.Powershell.Models.ILocationSummary, Commvault.Powershell.Models.ILocationSummaryInternal { /// <summary>Backing field for <see cref="City" /> property.</summary> private string _city; [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public string City { get => this._city; set => this._city = value; } /// <summary>Backing field for <see cref="Country" /> property.</summary> private string _country; [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public string Country { get => this._country; set => this._country = value; } /// <summary>Backing field for <see cref="State" /> property.</summary> private string _state; [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public string State { get => this._state; set => this._state = value; } /// <summary>Creates an new <see cref="LocationSummary" /> instance.</summary> public LocationSummary() { } } /// Summary of a location in a region public partial interface ILocationSummary : Commvault.Powershell.Runtime.IJsonSerializable { [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Read = true, Create = true, Update = true, Description = @"", SerializedName = @"city", PossibleTypes = new [] { typeof(string) })] string City { get; set; } [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Read = true, Create = true, Update = true, Description = @"", SerializedName = @"country", PossibleTypes = new [] { typeof(string) })] string Country { get; set; } [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Read = true, Create = true, Update = true, Description = @"", SerializedName = @"state", PossibleTypes = new [] { typeof(string) })] string State { get; set; } } /// Summary of a location in a region internal partial interface ILocationSummaryInternal { string City { get; set; } string Country { get; set; } string State { get; set; } } } |