UNPKG

@microsoft/msgraph-beta-sdk-education

Version:
42 lines 1.99 kB
import { type EducationSchool } 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 schools property of the microsoft.graph.educationUser entity. */ export interface EducationSchoolItemRequestBuilder extends BaseRequestBuilder<EducationSchoolItemRequestBuilder> { /** * Schools to which the user belongs. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<EducationSchool>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ get(requestConfiguration?: RequestConfiguration<EducationSchoolItemRequestBuilderGetQueryParameters> | undefined): Promise<EducationSchool | undefined>; /** * Schools to which the user belongs. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<EducationSchoolItemRequestBuilderGetQueryParameters> | undefined): RequestInformation; } /** * Schools to which the user belongs. Nullable. */ export interface EducationSchoolItemRequestBuilderGetQueryParameters { /** * Expand related entities */ expand?: string[]; /** * Select properties to be returned */ select?: string[]; } /** * Uri template for the request builder. */ export declare const EducationSchoolItemRequestBuilderUriTemplate = "{+baseurl}/education/me/schools/{educationSchool%2Did}{?%24expand,%24select}"; /** * Metadata for all the requests in the request builder. */ export declare const EducationSchoolItemRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map