UNPKG

@microsoft/msgraph-beta-sdk-communications

Version:
69 lines 3.78 kB
import { type Organizer } from '@microsoft/msgraph-beta-sdk/models/callRecords/index.js'; import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Provides operations to manage the organizer_v2 property of the microsoft.graph.callRecords.callRecord entity. */ export interface Organizer_v2RequestBuilder extends BaseRequestBuilder<Organizer_v2RequestBuilder> { /** * Delete navigation property organizer_v2 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>; /** * Identity of the organizer of the call. This relationship is expanded by default in callRecord methods. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<Organizer>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ get(requestConfiguration?: RequestConfiguration<Organizer_v2RequestBuilderGetQueryParameters> | undefined): Promise<Organizer | undefined>; /** * Update the navigation property organizer_v2 in communications * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<Organizer>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ patch(body: Organizer, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<Organizer | undefined>; /** * Delete navigation property organizer_v2 for communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; /** * Identity of the organizer of the call. This relationship is expanded by default in callRecord methods. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<Organizer_v2RequestBuilderGetQueryParameters> | undefined): RequestInformation; /** * Update the navigation property organizer_v2 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: Organizer, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; } /** * Identity of the organizer of the call. This relationship is expanded by default in callRecord methods. */ export interface Organizer_v2RequestBuilderGetQueryParameters { /** * Expand related entities */ expand?: string[]; /** * Select properties to be returned */ select?: string[]; } /** * Uri template for the request builder. */ export declare const Organizer_v2RequestBuilderUriTemplate = "{+baseurl}/communications/callRecords/{callRecord%2Did}/organizer_v2{?%24expand,%24select}"; /** * Metadata for all the requests in the request builder. */ export declare const Organizer_v2RequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map