UNPKG

@microsoft/msgraph-beta-sdk-education

Version:
42 lines 2.24 kB
import { type EducationGradingScheme } 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 gradingScheme property of the microsoft.graph.educationAssignment entity. */ export interface GradingSchemeRequestBuilder extends BaseRequestBuilder<GradingSchemeRequestBuilder> { /** * When set, enables users to configure custom string grades based on the percentage of total points earned on this assignment. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<EducationGradingScheme>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ get(requestConfiguration?: RequestConfiguration<GradingSchemeRequestBuilderGetQueryParameters> | undefined): Promise<EducationGradingScheme | undefined>; /** * When set, enables users to configure custom string grades based on the percentage of total points earned on this assignment. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<GradingSchemeRequestBuilderGetQueryParameters> | undefined): RequestInformation; } /** * When set, enables users to configure custom string grades based on the percentage of total points earned on this assignment. */ export interface GradingSchemeRequestBuilderGetQueryParameters { /** * Expand related entities */ expand?: string[]; /** * Select properties to be returned */ select?: string[]; } /** * Uri template for the request builder. */ export declare const GradingSchemeRequestBuilderUriTemplate = "{+baseurl}/education/me/assignments/{educationAssignment%2Did}/gradingScheme{?%24expand,%24select}"; /** * Metadata for all the requests in the request builder. */ export declare const GradingSchemeRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map