UNPKG

@microsoft/msgraph-beta-sdk-communications

Version:
91 lines 6.63 kB
import { type MeetingRegistration } from '@microsoft/msgraph-beta-sdk/models/index.js'; import { type CustomQuestionsRequestBuilder } from './customQuestions/index.js'; import { type RegistrantsRequestBuilder } from './registrants/index.js'; import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Provides operations to manage the registration property of the microsoft.graph.onlineMeeting entity. */ export interface RegistrationRequestBuilder extends BaseRequestBuilder<RegistrationRequestBuilder> { /** * Provides operations to manage the customQuestions property of the microsoft.graph.meetingRegistration entity. * @deprecated The meetingRegistrationBase Entity is deprecated and will stop returning data on Dec 12th, 2024. Please use the new webinar APIs. as of 2024-04/meetingRegistrationDeprecation on 2024-04-01 and will be removed 2024-12-12 */ get customQuestions(): CustomQuestionsRequestBuilder; /** * Provides operations to manage the registrants property of the microsoft.graph.meetingRegistrationBase entity. * @deprecated The meetingRegistrationBase Entity is deprecated and will stop returning data on Dec 12th, 2024. Please use the new webinar APIs. as of 2024-04/meetingRegistrationDeprecation on 2024-04-01 and will be removed 2024-12-12 */ get registrants(): RegistrantsRequestBuilder; /** * Delete navigation property registration 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 * @deprecated The meetingRegistrationBase Entity is deprecated and will stop returning data on Dec 12th, 2024. Please use the new webinar APIs. as of 2024-04/meetingRegistrationDeprecation on 2024-04-01 and will be removed 2024-12-12 */ delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>; /** * The registration that is enabled for an online meeting. One online meeting can only have one registration enabled. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<MeetingRegistration>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code * @deprecated The meetingRegistrationBase Entity is deprecated and will stop returning data on Dec 12th, 2024. Please use the new webinar APIs. as of 2024-04/meetingRegistrationDeprecation on 2024-04-01 and will be removed 2024-12-12 */ get(requestConfiguration?: RequestConfiguration<RegistrationRequestBuilderGetQueryParameters> | undefined): Promise<MeetingRegistration | undefined>; /** * Update the navigation property registration in communications * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<MeetingRegistration>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code * @deprecated The meetingRegistrationBase Entity is deprecated and will stop returning data on Dec 12th, 2024. Please use the new webinar APIs. as of 2024-04/meetingRegistrationDeprecation on 2024-04-01 and will be removed 2024-12-12 */ patch(body: MeetingRegistration, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<MeetingRegistration | undefined>; /** * Delete navigation property registration for communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} * @deprecated The meetingRegistrationBase Entity is deprecated and will stop returning data on Dec 12th, 2024. Please use the new webinar APIs. as of 2024-04/meetingRegistrationDeprecation on 2024-04-01 and will be removed 2024-12-12 */ toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; /** * The registration that is enabled for an online meeting. One online meeting can only have one registration enabled. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} * @deprecated The meetingRegistrationBase Entity is deprecated and will stop returning data on Dec 12th, 2024. Please use the new webinar APIs. as of 2024-04/meetingRegistrationDeprecation on 2024-04-01 and will be removed 2024-12-12 */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<RegistrationRequestBuilderGetQueryParameters> | undefined): RequestInformation; /** * Update the navigation property registration in communications * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} * @deprecated The meetingRegistrationBase Entity is deprecated and will stop returning data on Dec 12th, 2024. Please use the new webinar APIs. as of 2024-04/meetingRegistrationDeprecation on 2024-04-01 and will be removed 2024-12-12 */ toPatchRequestInformation(body: MeetingRegistration, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; } /** * The registration that is enabled for an online meeting. One online meeting can only have one registration enabled. */ export interface RegistrationRequestBuilderGetQueryParameters { /** * Expand related entities */ expand?: string[]; /** * Select properties to be returned */ select?: string[]; } /** * Uri template for the request builder. */ export declare const RegistrationRequestBuilderUriTemplate = "{+baseurl}/communications/onlineMeetings/{onlineMeeting%2Did}/registration{?%24expand,%24select}"; /** * Metadata for all the navigation properties in the request builder. */ export declare const RegistrationRequestBuilderNavigationMetadata: Record<Exclude<keyof RegistrationRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>; /** * Metadata for all the requests in the request builder. */ export declare const RegistrationRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map