UNPKG

@microsoft/msgraph-beta-sdk-solutions

Version:
88 lines 4.58 kB
import { type VirtualEventsRoot } from '@microsoft/msgraph-beta-sdk/models/index.js'; import { type EventsRequestBuilder } from './events/index.js'; import { type TownhallsRequestBuilder } from './townhalls/index.js'; import { type WebinarsRequestBuilder } from './webinars/index.js'; import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Provides operations to manage the virtualEvents property of the microsoft.graph.solutionsRoot entity. */ export interface VirtualEventsRequestBuilder extends BaseRequestBuilder<VirtualEventsRequestBuilder> { /** * Provides operations to manage the events property of the microsoft.graph.virtualEventsRoot entity. */ get events(): EventsRequestBuilder; /** * Provides operations to manage the townhalls property of the microsoft.graph.virtualEventsRoot entity. */ get townhalls(): TownhallsRequestBuilder; /** * Provides operations to manage the webinars property of the microsoft.graph.virtualEventsRoot entity. */ get webinars(): WebinarsRequestBuilder; /** * Delete navigation property virtualEvents for solutions * @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>; /** * A collection of virtual events. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<VirtualEventsRoot>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ get(requestConfiguration?: RequestConfiguration<VirtualEventsRequestBuilderGetQueryParameters> | undefined): Promise<VirtualEventsRoot | undefined>; /** * Update the navigation property virtualEvents in solutions * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<VirtualEventsRoot>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ patch(body: VirtualEventsRoot, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<VirtualEventsRoot | undefined>; /** * Delete navigation property virtualEvents for solutions * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; /** * A collection of virtual events. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<VirtualEventsRequestBuilderGetQueryParameters> | undefined): RequestInformation; /** * Update the navigation property virtualEvents in solutions * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toPatchRequestInformation(body: VirtualEventsRoot, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; } /** * A collection of virtual events. */ export interface VirtualEventsRequestBuilderGetQueryParameters { /** * Expand related entities */ expand?: string[]; /** * Select properties to be returned */ select?: string[]; } /** * Uri template for the request builder. */ export declare const VirtualEventsRequestBuilderUriTemplate = "{+baseurl}/solutions/virtualEvents{?%24expand,%24select}"; /** * Metadata for all the navigation properties in the request builder. */ export declare const VirtualEventsRequestBuilderNavigationMetadata: Record<Exclude<keyof VirtualEventsRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>; /** * Metadata for all the requests in the request builder. */ export declare const VirtualEventsRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map