import { type UserSolutionRoot } from '@microsoft/msgraph-sdk/models/index.js'; import { type WorkingTimeScheduleRequestBuilder } from './workingTimeSchedule/index.js'; import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Provides operations to manage the solutions property of the microsoft.graph.user entity. */ export interface SolutionsRequestBuilder extends BaseRequestBuilder { /** * Provides operations to manage the workingTimeSchedule property of the microsoft.graph.userSolutionRoot entity. */ get workingTimeSchedule(): WorkingTimeScheduleRequestBuilder; /** * Delete navigation property solutions for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ delete(requestConfiguration?: RequestConfiguration | undefined): Promise; /** * The identifier that relates the user to the working time schedule triggers. Read-Only. Nullable * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ get(requestConfiguration?: RequestConfiguration | undefined): Promise; /** * Update the navigation property solutions in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ patch(body: UserSolutionRoot, requestConfiguration?: RequestConfiguration | undefined): Promise; /** * Delete navigation property solutions for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toDeleteRequestInformation(requestConfiguration?: RequestConfiguration | undefined): RequestInformation; /** * The identifier that relates the user to the working time schedule triggers. Read-Only. Nullable * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration | undefined): RequestInformation; /** * Update the navigation property solutions in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toPatchRequestInformation(body: UserSolutionRoot, requestConfiguration?: RequestConfiguration | undefined): RequestInformation; } /** * The identifier that relates the user to the working time schedule triggers. Read-Only. Nullable */ export interface SolutionsRequestBuilderGetQueryParameters { /** * Expand related entities */ expand?: string[]; /** * Select properties to be returned */ select?: string[]; } /** * Uri template for the request builder. */ export declare const SolutionsRequestBuilderUriTemplate = "{+baseurl}/users/{user%2Did}/solutions{?%24expand,%24select}"; /** * Metadata for all the navigation properties in the request builder. */ export declare const SolutionsRequestBuilderNavigationMetadata: Record, NavigationMetadata>; /** * Metadata for all the requests in the request builder. */ export declare const SolutionsRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map