UNPKG

@microsoft/msgraph-beta-sdk-users

Version:
28 lines 1.63 kB
import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Provides operations to call the startWorkingTime method. */ export interface StartWorkingTimeRequestBuilder extends BaseRequestBuilder<StartWorkingTimeRequestBuilder> { /** * Trigger the policies associated with the start of working hours for a specific user. * @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 * @see {@link https://learn.microsoft.com/graph/api/workingtimeschedule-startworkingtime?view=graph-rest-beta|Find more info here} */ post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>; /** * Trigger the policies associated with the start of working hours for a specific user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toPostRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; } /** * Uri template for the request builder. */ export declare const StartWorkingTimeRequestBuilderUriTemplate = "{+baseurl}/users/{user%2Did}/solutions/workingTimeSchedule/startWorkingTime"; /** * Metadata for all the requests in the request builder. */ export declare const StartWorkingTimeRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map