@microsoft/msgraph-sdk-communications
Version:
Communications fluent API for Microsoft Graph
51 lines • 2.59 kB
TypeScript
import { type OnlineMeeting } from '@microsoft/msgraph-sdk/models/index.js';
import { type AttendeeReportRequestBuilder } from './attendeeReport/index.js';
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
/**
* Provides operations to manage the onlineMeeting property of the microsoft.graph.onlineMeetingEngagementConversation entity.
*/
export interface OnlineMeetingRequestBuilder extends BaseRequestBuilder<OnlineMeetingRequestBuilder> {
/**
* Provides operations to manage the media for the cloudCommunications entity.
*/
get attendeeReport(): AttendeeReportRequestBuilder;
/**
* The online meeting associated with the conversation.
* @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<OnlineMeetingRequestBuilderGetQueryParameters> | undefined): Promise<OnlineMeeting | undefined>;
/**
* The online meeting associated with the conversation.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toGetRequestInformation(requestConfiguration?: RequestConfiguration<OnlineMeetingRequestBuilderGetQueryParameters> | undefined): RequestInformation;
}
/**
* The online meeting associated with the conversation.
*/
export interface OnlineMeetingRequestBuilderGetQueryParameters {
/**
* Expand related entities
*/
expand?: string[];
/**
* Select properties to be returned
*/
select?: string[];
}
/**
* Uri template for the request builder.
*/
export declare const OnlineMeetingRequestBuilderUriTemplate = "{+baseurl}/communications/onlineMeetingConversations/{onlineMeetingEngagementConversation%2Did}/onlineMeeting{?%24expand,%24select}";
/**
* Metadata for all the navigation properties in the request builder.
*/
export declare const OnlineMeetingRequestBuilderNavigationMetadata: Record<Exclude<keyof OnlineMeetingRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
/**
* Metadata for all the requests in the request builder.
*/
export declare const OnlineMeetingRequestBuilderRequestsMetadata: RequestsMetadata;
//# sourceMappingURL=index.d.ts.map