mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
49 lines
2.4 KiB
C#
49 lines
2.4 KiB
C#
// <auto-generated/>
|
|
#pragma warning disable CS0618
|
|
using Marechai.App.Computers.ByLetter.Item;
|
|
using Microsoft.Kiota.Abstractions.Extensions;
|
|
using Microsoft.Kiota.Abstractions;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Threading.Tasks;
|
|
using System;
|
|
namespace Marechai.App.Computers.ByLetter
|
|
{
|
|
/// <summary>
|
|
/// Builds and executes requests for operations under \computers\by-letter
|
|
/// </summary>
|
|
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
|
|
public partial class ByLetterRequestBuilder : BaseRequestBuilder
|
|
{
|
|
/// <summary>Gets an item from the Marechai.App.computers.byLetter.item collection</summary>
|
|
/// <param name="position">Unique identifier of the item</param>
|
|
/// <returns>A <see cref="global::Marechai.App.Computers.ByLetter.Item.WithCItemRequestBuilder"/></returns>
|
|
public global::Marechai.App.Computers.ByLetter.Item.WithCItemRequestBuilder this[string position]
|
|
{
|
|
get
|
|
{
|
|
var urlTplParams = new Dictionary<string, object>(PathParameters);
|
|
urlTplParams.Add("c", position);
|
|
return new global::Marechai.App.Computers.ByLetter.Item.WithCItemRequestBuilder(urlTplParams, RequestAdapter);
|
|
}
|
|
}
|
|
/// <summary>
|
|
/// Instantiates a new <see cref="global::Marechai.App.Computers.ByLetter.ByLetterRequestBuilder"/> 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 ByLetterRequestBuilder(Dictionary<string, object> pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/computers/by-letter", pathParameters)
|
|
{
|
|
}
|
|
/// <summary>
|
|
/// Instantiates a new <see cref="global::Marechai.App.Computers.ByLetter.ByLetterRequestBuilder"/> 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 ByLetterRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/computers/by-letter", rawUrl)
|
|
{
|
|
}
|
|
}
|
|
}
|
|
#pragma warning restore CS0618
|