UNPKG

@microsoft/msgraph-beta-sdk-communications

Version:
75 lines 5.31 kB
import { type MeetingRegistrationQuestion } from '@microsoft/msgraph-beta-sdk/models/index.js'; import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Provides operations to manage the customQuestions property of the microsoft.graph.meetingRegistration entity. */ export interface MeetingRegistrationQuestionItemRequestBuilder extends BaseRequestBuilder<MeetingRegistrationQuestionItemRequestBuilder> { /** * Delete navigation property customQuestions 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>; /** * Custom registration questions. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<MeetingRegistrationQuestion>} * @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<MeetingRegistrationQuestionItemRequestBuilderGetQueryParameters> | undefined): Promise<MeetingRegistrationQuestion | undefined>; /** * Update the navigation property customQuestions in communications * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<MeetingRegistrationQuestion>} * @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: MeetingRegistrationQuestion, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<MeetingRegistrationQuestion | undefined>; /** * Delete navigation property customQuestions 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; /** * Custom registration questions. * @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<MeetingRegistrationQuestionItemRequestBuilderGetQueryParameters> | undefined): RequestInformation; /** * Update the navigation property customQuestions 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: MeetingRegistrationQuestion, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; } /** * Custom registration questions. */ export interface MeetingRegistrationQuestionItemRequestBuilderGetQueryParameters { /** * Expand related entities */ expand?: string[]; /** * Select properties to be returned */ select?: string[]; } /** * Uri template for the request builder. */ export declare const MeetingRegistrationQuestionItemRequestBuilderUriTemplate = "{+baseurl}/communications/onlineMeetings/{onlineMeeting%2Did}/registration/customQuestions/{meetingRegistrationQuestion%2Did}{?%24expand,%24select}"; /** * Metadata for all the requests in the request builder. */ export declare const MeetingRegistrationQuestionItemRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map