@microsoft/msgraph-beta-sdk-education
Version:
Education fluent API for Microsoft Graph
93 lines • 4.98 kB
TypeScript
import { type ReportsRoot } from '@microsoft/msgraph-beta-sdk/models/index.js';
import { type ReadingAssignmentSubmissionsRequestBuilder } from './readingAssignmentSubmissions/index.js';
import { type ReadingCoachPassagesRequestBuilder } from './readingCoachPassages/index.js';
import { type ReflectCheckInResponsesRequestBuilder } from './reflectCheckInResponses/index.js';
import { type SpeakerAssignmentSubmissionsRequestBuilder } from './speakerAssignmentSubmissions/index.js';
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
/**
* Provides operations to manage the reports property of the microsoft.graph.educationRoot entity.
*/
export interface ReportsRequestBuilder extends BaseRequestBuilder<ReportsRequestBuilder> {
/**
* Provides operations to manage the readingAssignmentSubmissions property of the microsoft.graph.reportsRoot entity.
*/
get readingAssignmentSubmissions(): ReadingAssignmentSubmissionsRequestBuilder;
/**
* Provides operations to manage the readingCoachPassages property of the microsoft.graph.reportsRoot entity.
*/
get readingCoachPassages(): ReadingCoachPassagesRequestBuilder;
/**
* Provides operations to manage the reflectCheckInResponses property of the microsoft.graph.reportsRoot entity.
*/
get reflectCheckInResponses(): ReflectCheckInResponsesRequestBuilder;
/**
* Provides operations to manage the speakerAssignmentSubmissions property of the microsoft.graph.reportsRoot entity.
*/
get speakerAssignmentSubmissions(): SpeakerAssignmentSubmissionsRequestBuilder;
/**
* Delete navigation property reports for education
* @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>;
/**
* Get reports from education
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<ReportsRoot>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
*/
get(requestConfiguration?: RequestConfiguration<ReportsRequestBuilderGetQueryParameters> | undefined): Promise<ReportsRoot | undefined>;
/**
* Update the navigation property reports in education
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<ReportsRoot>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
*/
patch(body: ReportsRoot, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ReportsRoot | undefined>;
/**
* Delete navigation property reports for education
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
/**
* Get reports from education
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toGetRequestInformation(requestConfiguration?: RequestConfiguration<ReportsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
/**
* Update the navigation property reports in education
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toPatchRequestInformation(body: ReportsRoot, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
}
/**
* Get reports from education
*/
export interface ReportsRequestBuilderGetQueryParameters {
/**
* Expand related entities
*/
expand?: string[];
/**
* Select properties to be returned
*/
select?: string[];
}
/**
* Uri template for the request builder.
*/
export declare const ReportsRequestBuilderUriTemplate = "{+baseurl}/education/reports{?%24expand,%24select}";
/**
* Metadata for all the navigation properties in the request builder.
*/
export declare const ReportsRequestBuilderNavigationMetadata: Record<Exclude<keyof ReportsRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
/**
* Metadata for all the requests in the request builder.
*/
export declare const ReportsRequestBuilderRequestsMetadata: RequestsMetadata;
//# sourceMappingURL=index.d.ts.map