UNPKG

@microsoft/msgraph-beta-sdk-communications

Version:
138 lines 7.36 kB
import { type OnlineMeeting } from '@microsoft/msgraph-beta-sdk/models/index.js'; import { type AiInsightsRequestBuilder } from './aiInsights/index.js'; import { type AlternativeRecordingRequestBuilder } from './alternativeRecording/index.js'; import { type AttendanceReportsRequestBuilder } from './attendanceReports/index.js'; import { type AttendeeReportRequestBuilder } from './attendeeReport/index.js'; import { type BroadcastRecordingRequestBuilder } from './broadcastRecording/index.js'; import { type GetVirtualAppointmentJoinWebUrlRequestBuilder } from './getVirtualAppointmentJoinWebUrl/index.js'; import { type MeetingAttendanceReportRequestBuilder } from './meetingAttendanceReport/index.js'; import { type RecordingRequestBuilder } from './recording/index.js'; import { type RecordingsRequestBuilder } from './recordings/index.js'; import { type RegistrationRequestBuilder } from './registration/index.js'; import { type SendVirtualAppointmentReminderSmsRequestBuilder } from './sendVirtualAppointmentReminderSms/index.js'; import { type SendVirtualAppointmentSmsRequestBuilder } from './sendVirtualAppointmentSms/index.js'; import { type TranscriptsRequestBuilder } from './transcripts/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.cloudCommunications entity. */ export interface OnlineMeetingItemRequestBuilder extends BaseRequestBuilder<OnlineMeetingItemRequestBuilder> { /** * Provides operations to manage the aiInsights property of the microsoft.graph.onlineMeeting entity. */ get aiInsights(): AiInsightsRequestBuilder; /** * Provides operations to manage the media for the cloudCommunications entity. */ get alternativeRecording(): AlternativeRecordingRequestBuilder; /** * Provides operations to manage the attendanceReports property of the microsoft.graph.onlineMeetingBase entity. */ get attendanceReports(): AttendanceReportsRequestBuilder; /** * Provides operations to manage the media for the cloudCommunications entity. */ get attendeeReport(): AttendeeReportRequestBuilder; /** * Provides operations to manage the media for the cloudCommunications entity. */ get broadcastRecording(): BroadcastRecordingRequestBuilder; /** * Provides operations to call the getVirtualAppointmentJoinWebUrl method. */ get getVirtualAppointmentJoinWebUrl(): GetVirtualAppointmentJoinWebUrlRequestBuilder; /** * Provides operations to manage the meetingAttendanceReport property of the microsoft.graph.onlineMeeting entity. */ get meetingAttendanceReport(): MeetingAttendanceReportRequestBuilder; /** * Provides operations to manage the media for the cloudCommunications entity. */ get recording(): RecordingRequestBuilder; /** * Provides operations to manage the recordings property of the microsoft.graph.onlineMeeting entity. */ get recordings(): RecordingsRequestBuilder; /** * Provides operations to manage the registration property of the microsoft.graph.onlineMeeting entity. */ get registration(): RegistrationRequestBuilder; /** * Provides operations to call the sendVirtualAppointmentReminderSms method. */ get sendVirtualAppointmentReminderSms(): SendVirtualAppointmentReminderSmsRequestBuilder; /** * Provides operations to call the sendVirtualAppointmentSms method. */ get sendVirtualAppointmentSms(): SendVirtualAppointmentSmsRequestBuilder; /** * Provides operations to manage the transcripts property of the microsoft.graph.onlineMeeting entity. */ get transcripts(): TranscriptsRequestBuilder; /** * Delete navigation property onlineMeetings for communications * @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>; /** * Get onlineMeetings from communications * @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<OnlineMeetingItemRequestBuilderGetQueryParameters> | undefined): Promise<OnlineMeeting | undefined>; /** * Update the navigation property onlineMeetings in communications * @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 communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; /** * Get onlineMeetings from communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<OnlineMeetingItemRequestBuilderGetQueryParameters> | undefined): RequestInformation; /** * Update the navigation property onlineMeetings in communications * @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; } /** * Get onlineMeetings from communications */ export interface OnlineMeetingItemRequestBuilderGetQueryParameters { /** * Expand related entities */ expand?: string[]; /** * Select properties to be returned */ select?: string[]; } /** * Uri template for the request builder. */ export declare const OnlineMeetingItemRequestBuilderUriTemplate = "{+baseurl}/communications/onlineMeetings/{onlineMeeting%2Did}{?%24expand,%24select}"; /** * Metadata for all the navigation properties in the request builder. */ export declare const OnlineMeetingItemRequestBuilderNavigationMetadata: Record<Exclude<keyof OnlineMeetingItemRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>; /** * Metadata for all the requests in the request builder. */ export declare const OnlineMeetingItemRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map