@microsoft/msgraph-beta-sdk-solutions
Version:
Solutions fluent API for Microsoft Graph
92 lines • 5.3 kB
TypeScript
import { type VirtualEventTownhall } from '@microsoft/msgraph-beta-sdk/models/index.js';
import { type PresentersRequestBuilder } from './presenters/index.js';
import { type SessionsRequestBuilder } from './sessions/index.js';
import { type SessionsWithJoinWebUrlRequestBuilder } from './sessionsWithJoinWebUrl/index.js';
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
/**
* Provides operations to manage the townhalls property of the microsoft.graph.virtualEventsRoot entity.
*/
export interface VirtualEventTownhallItemRequestBuilder extends BaseRequestBuilder<VirtualEventTownhallItemRequestBuilder> {
/**
* Provides operations to manage the presenters property of the microsoft.graph.virtualEvent entity.
*/
get presenters(): PresentersRequestBuilder;
/**
* Provides operations to manage the sessions property of the microsoft.graph.virtualEvent entity.
*/
get sessions(): SessionsRequestBuilder;
/**
* Delete navigation property townhalls 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>;
/**
* Read the properties and relationships of a virtualEventTownhall object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<VirtualEventTownhall>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
* @see {@link https://learn.microsoft.com/graph/api/virtualeventtownhall-get?view=graph-rest-beta|Find more info here}
*/
get(requestConfiguration?: RequestConfiguration<VirtualEventTownhallItemRequestBuilderGetQueryParameters> | undefined): Promise<VirtualEventTownhall | undefined>;
/**
* Update the properties of a virtualEventTownhall object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<VirtualEventTownhall>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
* @see {@link https://learn.microsoft.com/graph/api/virtualeventtownhall-update?view=graph-rest-beta|Find more info here}
*/
patch(body: VirtualEventTownhall, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<VirtualEventTownhall | undefined>;
/**
* Provides operations to manage the sessions property of the microsoft.graph.virtualEvent entity.
* @param joinWebUrl Alternate key of virtualEventSession
* @returns {SessionsWithJoinWebUrlRequestBuilder}
*/
sessionsWithJoinWebUrl(joinWebUrl: string | undefined): SessionsWithJoinWebUrlRequestBuilder;
/**
* Delete navigation property townhalls for solutions
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
/**
* Read the properties and relationships of a virtualEventTownhall object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toGetRequestInformation(requestConfiguration?: RequestConfiguration<VirtualEventTownhallItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
/**
* Update the properties of a virtualEventTownhall object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toPatchRequestInformation(body: VirtualEventTownhall, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
}
/**
* Read the properties and relationships of a virtualEventTownhall object.
*/
export interface VirtualEventTownhallItemRequestBuilderGetQueryParameters {
/**
* Expand related entities
*/
expand?: string[];
/**
* Select properties to be returned
*/
select?: string[];
}
/**
* Uri template for the request builder.
*/
export declare const VirtualEventTownhallItemRequestBuilderUriTemplate = "{+baseurl}/solutions/virtualEvents/townhalls/{virtualEventTownhall%2Did}{?%24expand,%24select}";
/**
* Metadata for all the navigation properties in the request builder.
*/
export declare const VirtualEventTownhallItemRequestBuilderNavigationMetadata: Record<Exclude<keyof VirtualEventTownhallItemRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
/**
* Metadata for all the requests in the request builder.
*/
export declare const VirtualEventTownhallItemRequestBuilderRequestsMetadata: RequestsMetadata;
//# sourceMappingURL=index.d.ts.map