-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #951 from microsoftgraph/kiota/beta/pipelinebuild/…
…175190 Generated beta models and request builders
- Loading branch information
Showing
326 changed files
with
7,822 additions
and
2,855 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
81 changes: 81 additions & 0 deletions
81
src/Microsoft.Graph/Generated/AdministrativeUnits/Item/Restore/RestorePostRequestBody.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
// <auto-generated/> | ||
#pragma warning disable CS0618 | ||
using Microsoft.Kiota.Abstractions.Extensions; | ||
using Microsoft.Kiota.Abstractions.Serialization; | ||
using Microsoft.Kiota.Abstractions.Store; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
using System; | ||
namespace Microsoft.Graph.Beta.AdministrativeUnits.Item.Restore | ||
{ | ||
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")] | ||
#pragma warning disable CS1591 | ||
public partial class RestorePostRequestBody : IAdditionalDataHolder, IBackedModel, IParsable | ||
#pragma warning restore CS1591 | ||
{ | ||
/// <summary>Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.</summary> | ||
public IDictionary<string, object> AdditionalData | ||
{ | ||
get { return BackingStore.Get<IDictionary<string, object>>("AdditionalData") ?? new Dictionary<string, object>(); } | ||
set { BackingStore.Set("AdditionalData", value); } | ||
} | ||
/// <summary>Stores model information.</summary> | ||
public IBackingStore BackingStore { get; private set; } | ||
/// <summary>The newUserPrincipalName property</summary> | ||
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER | ||
#nullable enable | ||
public string? NewUserPrincipalName | ||
{ | ||
get { return BackingStore?.Get<string?>("newUserPrincipalName"); } | ||
set { BackingStore?.Set("newUserPrincipalName", value); } | ||
} | ||
#nullable restore | ||
#else | ||
public string NewUserPrincipalName | ||
{ | ||
get { return BackingStore?.Get<string>("newUserPrincipalName"); } | ||
set { BackingStore?.Set("newUserPrincipalName", value); } | ||
} | ||
#endif | ||
/// <summary> | ||
/// Instantiates a new <see cref="global::Microsoft.Graph.Beta.AdministrativeUnits.Item.Restore.RestorePostRequestBody"/> and sets the default values. | ||
/// </summary> | ||
public RestorePostRequestBody() | ||
{ | ||
BackingStore = BackingStoreFactorySingleton.Instance.CreateBackingStore(); | ||
AdditionalData = new Dictionary<string, object>(); | ||
} | ||
/// <summary> | ||
/// Creates a new instance of the appropriate class based on discriminator value | ||
/// </summary> | ||
/// <returns>A <see cref="global::Microsoft.Graph.Beta.AdministrativeUnits.Item.Restore.RestorePostRequestBody"/></returns> | ||
/// <param name="parseNode">The parse node to use to read the discriminator value and create the object</param> | ||
public static global::Microsoft.Graph.Beta.AdministrativeUnits.Item.Restore.RestorePostRequestBody CreateFromDiscriminatorValue(IParseNode parseNode) | ||
{ | ||
_ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); | ||
return new global::Microsoft.Graph.Beta.AdministrativeUnits.Item.Restore.RestorePostRequestBody(); | ||
} | ||
/// <summary> | ||
/// The deserialization information for the current model | ||
/// </summary> | ||
/// <returns>A IDictionary<string, Action<IParseNode>></returns> | ||
public virtual IDictionary<string, Action<IParseNode>> GetFieldDeserializers() | ||
{ | ||
return new Dictionary<string, Action<IParseNode>> | ||
{ | ||
{ "newUserPrincipalName", n => { NewUserPrincipalName = n.GetStringValue(); } }, | ||
}; | ||
} | ||
/// <summary> | ||
/// Serializes information the current object | ||
/// </summary> | ||
/// <param name="writer">Serialization writer to use to serialize this model</param> | ||
public virtual void Serialize(ISerializationWriter writer) | ||
{ | ||
_ = writer ?? throw new ArgumentNullException(nameof(writer)); | ||
writer.WriteStringValue("newUserPrincipalName", NewUserPrincipalName); | ||
writer.WriteAdditionalData(AdditionalData); | ||
} | ||
} | ||
} | ||
#pragma warning restore CS0618 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.