UNPKG

@microsoft/msgraph-beta-sdk-communications

Version:
78 lines 4.54 kB
import { type MeetingAttendanceReport } from '@microsoft/msgraph-beta-sdk/models/index.js'; import { type AttendanceRecordsRequestBuilder } from './attendanceRecords/index.js'; import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Provides operations to manage the meetingAttendanceReport property of the microsoft.graph.onlineMeeting entity. */ export interface MeetingAttendanceReportRequestBuilder extends BaseRequestBuilder<MeetingAttendanceReportRequestBuilder> { /** * Provides operations to manage the attendanceRecords property of the microsoft.graph.meetingAttendanceReport entity. */ get attendanceRecords(): AttendanceRecordsRequestBuilder; /** * Delete navigation property meetingAttendanceReport 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>; /** * The attendance report of the latest online meeting session. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<MeetingAttendanceReport>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ get(requestConfiguration?: RequestConfiguration<MeetingAttendanceReportRequestBuilderGetQueryParameters> | undefined): Promise<MeetingAttendanceReport | undefined>; /** * Update the navigation property meetingAttendanceReport in communications * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<MeetingAttendanceReport>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ patch(body: MeetingAttendanceReport, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<MeetingAttendanceReport | undefined>; /** * Delete navigation property meetingAttendanceReport for communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; /** * The attendance report of the latest online meeting session. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<MeetingAttendanceReportRequestBuilderGetQueryParameters> | undefined): RequestInformation; /** * Update the navigation property meetingAttendanceReport 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: MeetingAttendanceReport, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; } /** * The attendance report of the latest online meeting session. Read-only. */ export interface MeetingAttendanceReportRequestBuilderGetQueryParameters { /** * Expand related entities */ expand?: string[]; /** * Select properties to be returned */ select?: string[]; } /** * Uri template for the request builder. */ export declare const MeetingAttendanceReportRequestBuilderUriTemplate = "{+baseurl}/communications/onlineMeetings/{onlineMeeting%2Did}/meetingAttendanceReport{?%24expand,%24select}"; /** * Metadata for all the navigation properties in the request builder. */ export declare const MeetingAttendanceReportRequestBuilderNavigationMetadata: Record<Exclude<keyof MeetingAttendanceReportRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>; /** * Metadata for all the requests in the request builder. */ export declare const MeetingAttendanceReportRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map