mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
176 lines
11 KiB
C#
176 lines
11 KiB
C#
// <auto-generated/>
|
|
#pragma warning disable CS0618
|
|
using Marechai.App.Models;
|
|
using Microsoft.Kiota.Abstractions.Extensions;
|
|
using Microsoft.Kiota.Abstractions.Serialization;
|
|
using Microsoft.Kiota.Abstractions;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Threading.Tasks;
|
|
using System.Threading;
|
|
using System;
|
|
namespace Marechai.App.Companies.Logos.ChangeYear.Item
|
|
{
|
|
/// <summary>
|
|
/// Builds and executes requests for operations under \companies\logos\change-year\{id}
|
|
/// </summary>
|
|
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
|
|
public partial class ChangeYearItemRequestBuilder : BaseRequestBuilder
|
|
{
|
|
/// <summary>
|
|
/// Instantiates a new <see cref="global::Marechai.App.Companies.Logos.ChangeYear.Item.ChangeYearItemRequestBuilder"/> and sets the default values.
|
|
/// </summary>
|
|
/// <param name="pathParameters">Path parameters for the request</param>
|
|
/// <param name="requestAdapter">The request adapter to use to execute the requests.</param>
|
|
public ChangeYearItemRequestBuilder(Dictionary<string, object> pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/companies/logos/change-year/{id}", pathParameters)
|
|
{
|
|
}
|
|
/// <summary>
|
|
/// Instantiates a new <see cref="global::Marechai.App.Companies.Logos.ChangeYear.Item.ChangeYearItemRequestBuilder"/> and sets the default values.
|
|
/// </summary>
|
|
/// <param name="rawUrl">The raw URL to use for the request builder.</param>
|
|
/// <param name="requestAdapter">The request adapter to use to execute the requests.</param>
|
|
public ChangeYearItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/companies/logos/change-year/{id}", rawUrl)
|
|
{
|
|
}
|
|
/// <returns>A <see cref="string"/></returns>
|
|
/// <param name="body">The request body</param>
|
|
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
|
|
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
|
|
/// <exception cref="global::Marechai.App.Models.ProblemDetails">When receiving a 400 status code</exception>
|
|
/// <exception cref="global::Marechai.App.Models.ProblemDetails">When receiving a 401 status code</exception>
|
|
/// <exception cref="global::Marechai.App.Models.ProblemDetails">When receiving a 404 status code</exception>
|
|
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
|
|
#nullable enable
|
|
public async Task<string?> PutAsync(global::Marechai.App.Companies.Logos.ChangeYear.Item.ChangeYearItemRequestBuilder.ChangeYearPutRequestBody body, Action<RequestConfiguration<DefaultQueryParameters>>? requestConfiguration = default, CancellationToken cancellationToken = default)
|
|
{
|
|
#nullable restore
|
|
#else
|
|
public async Task<string> PutAsync(global::Marechai.App.Companies.Logos.ChangeYear.Item.ChangeYearItemRequestBuilder.ChangeYearPutRequestBody body, Action<RequestConfiguration<DefaultQueryParameters>> requestConfiguration = default, CancellationToken cancellationToken = default)
|
|
{
|
|
#endif
|
|
if(ReferenceEquals(body, null)) throw new ArgumentNullException(nameof(body));
|
|
var requestInfo = ToPutRequestInformation(body, requestConfiguration);
|
|
var errorMapping = new Dictionary<string, ParsableFactory<IParsable>>
|
|
{
|
|
{ "400", global::Marechai.App.Models.ProblemDetails.CreateFromDiscriminatorValue },
|
|
{ "401", global::Marechai.App.Models.ProblemDetails.CreateFromDiscriminatorValue },
|
|
{ "404", global::Marechai.App.Models.ProblemDetails.CreateFromDiscriminatorValue },
|
|
};
|
|
return await RequestAdapter.SendPrimitiveAsync<string>(requestInfo, errorMapping, cancellationToken).ConfigureAwait(false);
|
|
}
|
|
/// <returns>A <see cref="RequestInformation"/></returns>
|
|
/// <param name="body">The request body</param>
|
|
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
|
|
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
|
|
#nullable enable
|
|
public RequestInformation ToPutRequestInformation(global::Marechai.App.Companies.Logos.ChangeYear.Item.ChangeYearItemRequestBuilder.ChangeYearPutRequestBody body, Action<RequestConfiguration<DefaultQueryParameters>>? requestConfiguration = default)
|
|
{
|
|
#nullable restore
|
|
#else
|
|
public RequestInformation ToPutRequestInformation(global::Marechai.App.Companies.Logos.ChangeYear.Item.ChangeYearItemRequestBuilder.ChangeYearPutRequestBody body, Action<RequestConfiguration<DefaultQueryParameters>> requestConfiguration = default)
|
|
{
|
|
#endif
|
|
if(ReferenceEquals(body, null)) throw new ArgumentNullException(nameof(body));
|
|
var requestInfo = new RequestInformation(Method.PUT, UrlTemplate, PathParameters);
|
|
requestInfo.Configure(requestConfiguration);
|
|
requestInfo.Headers.TryAdd("Accept", "application/json, text/plain;q=0.9");
|
|
requestInfo.SetContentFromParsable(RequestAdapter, "application/json", body);
|
|
return requestInfo;
|
|
}
|
|
/// <summary>
|
|
/// Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.
|
|
/// </summary>
|
|
/// <returns>A <see cref="global::Marechai.App.Companies.Logos.ChangeYear.Item.ChangeYearItemRequestBuilder"/></returns>
|
|
/// <param name="rawUrl">The raw URL to use for the request builder.</param>
|
|
public global::Marechai.App.Companies.Logos.ChangeYear.Item.ChangeYearItemRequestBuilder WithUrl(string rawUrl)
|
|
{
|
|
return new global::Marechai.App.Companies.Logos.ChangeYear.Item.ChangeYearItemRequestBuilder(rawUrl, RequestAdapter);
|
|
}
|
|
/// <summary>
|
|
/// Configuration for the request such as headers, query parameters, and middleware options.
|
|
/// </summary>
|
|
[Obsolete("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.")]
|
|
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
|
|
public partial class ChangeYearItemRequestBuilderPutRequestConfiguration : RequestConfiguration<DefaultQueryParameters>
|
|
{
|
|
}
|
|
/// <summary>
|
|
/// Composed type wrapper for classes <see cref="global::Marechai.App.Companies.Logos.ChangeYear.Item.ChangeYearPutRequestBodyMember1"/>, <see cref="global::Marechai.App.Companies.Logos.ChangeYear.Item.ChangeYearPutRequestBodyMember2"/>
|
|
/// </summary>
|
|
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
|
|
public partial class ChangeYearPutRequestBody : IComposedTypeWrapper, IParsable
|
|
{
|
|
/// <summary>Composed type representation for type <see cref="global::Marechai.App.Companies.Logos.ChangeYear.Item.ChangeYearPutRequestBodyMember1"/></summary>
|
|
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
|
|
#nullable enable
|
|
public global::Marechai.App.Companies.Logos.ChangeYear.Item.ChangeYearPutRequestBodyMember1? ChangeYearPutRequestBodyMember1 { get; set; }
|
|
#nullable restore
|
|
#else
|
|
public global::Marechai.App.Companies.Logos.ChangeYear.Item.ChangeYearPutRequestBodyMember1 ChangeYearPutRequestBodyMember1 { get; set; }
|
|
#endif
|
|
/// <summary>Composed type representation for type <see cref="global::Marechai.App.Companies.Logos.ChangeYear.Item.ChangeYearPutRequestBodyMember2"/></summary>
|
|
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
|
|
#nullable enable
|
|
public global::Marechai.App.Companies.Logos.ChangeYear.Item.ChangeYearPutRequestBodyMember2? ChangeYearPutRequestBodyMember2 { get; set; }
|
|
#nullable restore
|
|
#else
|
|
public global::Marechai.App.Companies.Logos.ChangeYear.Item.ChangeYearPutRequestBodyMember2 ChangeYearPutRequestBodyMember2 { get; set; }
|
|
#endif
|
|
/// <summary>
|
|
/// Creates a new instance of the appropriate class based on discriminator value
|
|
/// </summary>
|
|
/// <returns>A <see cref="global::Marechai.App.Companies.Logos.ChangeYear.Item.ChangeYearItemRequestBuilder.ChangeYearPutRequestBody"/></returns>
|
|
/// <param name="parseNode">The parse node to use to read the discriminator value and create the object</param>
|
|
public static global::Marechai.App.Companies.Logos.ChangeYear.Item.ChangeYearItemRequestBuilder.ChangeYearPutRequestBody CreateFromDiscriminatorValue(IParseNode parseNode)
|
|
{
|
|
if(ReferenceEquals(parseNode, null)) throw new ArgumentNullException(nameof(parseNode));
|
|
var mappingValue = parseNode.GetChildNode("")?.GetStringValue();
|
|
var result = new global::Marechai.App.Companies.Logos.ChangeYear.Item.ChangeYearItemRequestBuilder.ChangeYearPutRequestBody();
|
|
if("".Equals(mappingValue, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
result.ChangeYearPutRequestBodyMember1 = new global::Marechai.App.Companies.Logos.ChangeYear.Item.ChangeYearPutRequestBodyMember1();
|
|
}
|
|
else if("".Equals(mappingValue, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
result.ChangeYearPutRequestBodyMember2 = new global::Marechai.App.Companies.Logos.ChangeYear.Item.ChangeYearPutRequestBodyMember2();
|
|
}
|
|
return result;
|
|
}
|
|
/// <summary>
|
|
/// The deserialization information for the current model
|
|
/// </summary>
|
|
/// <returns>A IDictionary<string, Action<IParseNode>></returns>
|
|
public virtual IDictionary<string, Action<IParseNode>> GetFieldDeserializers()
|
|
{
|
|
if(ChangeYearPutRequestBodyMember1 != null)
|
|
{
|
|
return ChangeYearPutRequestBodyMember1.GetFieldDeserializers();
|
|
}
|
|
else if(ChangeYearPutRequestBodyMember2 != null)
|
|
{
|
|
return ChangeYearPutRequestBodyMember2.GetFieldDeserializers();
|
|
}
|
|
return new Dictionary<string, Action<IParseNode>>();
|
|
}
|
|
/// <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)
|
|
{
|
|
if(ReferenceEquals(writer, null)) throw new ArgumentNullException(nameof(writer));
|
|
if(ChangeYearPutRequestBodyMember1 != null)
|
|
{
|
|
writer.WriteObjectValue<global::Marechai.App.Companies.Logos.ChangeYear.Item.ChangeYearPutRequestBodyMember1>(null, ChangeYearPutRequestBodyMember1);
|
|
}
|
|
else if(ChangeYearPutRequestBodyMember2 != null)
|
|
{
|
|
writer.WriteObjectValue<global::Marechai.App.Companies.Logos.ChangeYear.Item.ChangeYearPutRequestBodyMember2>(null, ChangeYearPutRequestBodyMember2);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
#pragma warning restore CS0618
|