UNPKG

@microsoft/msgraph-beta-sdk-users

Version:
88 lines 5.12 kB
import { type OnlineMeeting } from '@microsoft/msgraph-beta-sdk/models/index.js'; import { type GetVirtualAppointmentJoinWebUrlRequestBuilder } from './getVirtualAppointmentJoinWebUrl/index.js'; import { type SendVirtualAppointmentReminderSmsRequestBuilder } from './sendVirtualAppointmentReminderSms/index.js'; import { type SendVirtualAppointmentSmsRequestBuilder } from './sendVirtualAppointmentSms/index.js'; import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Provides operations to manage the onlineMeetings property of the microsoft.graph.user entity. */ export interface OnlineMeetingsWithJoinWebUrlRequestBuilder extends BaseRequestBuilder<OnlineMeetingsWithJoinWebUrlRequestBuilder> { /** * Provides operations to call the getVirtualAppointmentJoinWebUrl method. */ get getVirtualAppointmentJoinWebUrl(): GetVirtualAppointmentJoinWebUrlRequestBuilder; /** * Provides operations to call the sendVirtualAppointmentReminderSms method. */ get sendVirtualAppointmentReminderSms(): SendVirtualAppointmentReminderSmsRequestBuilder; /** * Provides operations to call the sendVirtualAppointmentSms method. */ get sendVirtualAppointmentSms(): SendVirtualAppointmentSmsRequestBuilder; /** * Delete navigation property onlineMeetings 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<object> | undefined): Promise<void>; /** * Information about a meeting, including the URL used to join a meeting, the attendees list, and the description. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<OnlineMeeting>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ get(requestConfiguration?: RequestConfiguration<OnlineMeetingsWithJoinWebUrlRequestBuilderGetQueryParameters> | undefined): Promise<OnlineMeeting | undefined>; /** * Update the navigation property onlineMeetings in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<OnlineMeeting>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ patch(body: OnlineMeeting, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<OnlineMeeting | undefined>; /** * Delete navigation property onlineMeetings for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; /** * Information about a meeting, including the URL used to join a meeting, the attendees list, and the description. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<OnlineMeetingsWithJoinWebUrlRequestBuilderGetQueryParameters> | undefined): RequestInformation; /** * Update the navigation property onlineMeetings 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: OnlineMeeting, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; } /** * Information about a meeting, including the URL used to join a meeting, the attendees list, and the description. */ export interface OnlineMeetingsWithJoinWebUrlRequestBuilderGetQueryParameters { /** * Expand related entities */ expand?: string[]; /** * Select properties to be returned */ select?: string[]; } /** * Uri template for the request builder. */ export declare const OnlineMeetingsWithJoinWebUrlRequestBuilderUriTemplate = "{+baseurl}/users/{user%2Did}/onlineMeetings(joinWebUrl='{joinWebUrl}'){?%24expand,%24select}"; /** * Metadata for all the navigation properties in the request builder. */ export declare const OnlineMeetingsWithJoinWebUrlRequestBuilderNavigationMetadata: Record<Exclude<keyof OnlineMeetingsWithJoinWebUrlRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>; /** * Metadata for all the requests in the request builder. */ export declare const OnlineMeetingsWithJoinWebUrlRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map