mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
54 lines
2.5 KiB
C#
54 lines
2.5 KiB
C#
// <auto-generated/>
|
|
#pragma warning disable CS0618
|
|
using Marechai.App.Software.Families;
|
|
using Marechai.App.Software.Variants;
|
|
using Marechai.App.Software.Versions;
|
|
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.Software
|
|
{
|
|
/// <summary>
|
|
/// Builds and executes requests for operations under \software
|
|
/// </summary>
|
|
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
|
|
public partial class SoftwareRequestBuilder : BaseRequestBuilder
|
|
{
|
|
/// <summary>The families property</summary>
|
|
public global::Marechai.App.Software.Families.FamiliesRequestBuilder Families
|
|
{
|
|
get => new global::Marechai.App.Software.Families.FamiliesRequestBuilder(PathParameters, RequestAdapter);
|
|
}
|
|
/// <summary>The variants property</summary>
|
|
public global::Marechai.App.Software.Variants.VariantsRequestBuilder Variants
|
|
{
|
|
get => new global::Marechai.App.Software.Variants.VariantsRequestBuilder(PathParameters, RequestAdapter);
|
|
}
|
|
/// <summary>The versions property</summary>
|
|
public global::Marechai.App.Software.Versions.VersionsRequestBuilder Versions
|
|
{
|
|
get => new global::Marechai.App.Software.Versions.VersionsRequestBuilder(PathParameters, RequestAdapter);
|
|
}
|
|
/// <summary>
|
|
/// Instantiates a new <see cref="global::Marechai.App.Software.SoftwareRequestBuilder"/> 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 SoftwareRequestBuilder(Dictionary<string, object> pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/software", pathParameters)
|
|
{
|
|
}
|
|
/// <summary>
|
|
/// Instantiates a new <see cref="global::Marechai.App.Software.SoftwareRequestBuilder"/> 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 SoftwareRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/software", rawUrl)
|
|
{
|
|
}
|
|
}
|
|
}
|
|
#pragma warning restore CS0618
|