//
#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
{
///
/// Builds and executes requests for operations under \software
///
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class SoftwareRequestBuilder : BaseRequestBuilder
{
/// The families property
public global::Marechai.App.Software.Families.FamiliesRequestBuilder Families
{
get => new global::Marechai.App.Software.Families.FamiliesRequestBuilder(PathParameters, RequestAdapter);
}
/// The variants property
public global::Marechai.App.Software.Variants.VariantsRequestBuilder Variants
{
get => new global::Marechai.App.Software.Variants.VariantsRequestBuilder(PathParameters, RequestAdapter);
}
/// The versions property
public global::Marechai.App.Software.Versions.VersionsRequestBuilder Versions
{
get => new global::Marechai.App.Software.Versions.VersionsRequestBuilder(PathParameters, RequestAdapter);
}
///
/// Instantiates a new and sets the default values.
///
/// Path parameters for the request
/// The request adapter to use to execute the requests.
public SoftwareRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/software", pathParameters)
{
}
///
/// Instantiates a new and sets the default values.
///
/// The raw URL to use for the request builder.
/// The request adapter to use to execute the requests.
public SoftwareRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/software", rawUrl)
{
}
}
}
#pragma warning restore CS0618