UNPKG

@microsoft/msgraph-beta-sdk-groups

Version:
42 lines 2.18 kB
import { type DirectoryObject } 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 createdOnBehalfOf property of the microsoft.graph.group entity. */ export interface CreatedOnBehalfOfRequestBuilder extends BaseRequestBuilder<CreatedOnBehalfOfRequestBuilder> { /** * The user (or application) that created the group. Note: This isn't set if the user is an administrator. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<DirectoryObject>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ get(requestConfiguration?: RequestConfiguration<CreatedOnBehalfOfRequestBuilderGetQueryParameters> | undefined): Promise<DirectoryObject | undefined>; /** * The user (or application) that created the group. Note: This isn't set if the user is an administrator. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<CreatedOnBehalfOfRequestBuilderGetQueryParameters> | undefined): RequestInformation; } /** * The user (or application) that created the group. Note: This isn't set if the user is an administrator. Read-only. */ export interface CreatedOnBehalfOfRequestBuilderGetQueryParameters { /** * Expand related entities */ expand?: string[]; /** * Select properties to be returned */ select?: string[]; } /** * Uri template for the request builder. */ export declare const CreatedOnBehalfOfRequestBuilderUriTemplate = "{+baseurl}/groups/{group%2Did}/createdOnBehalfOf{?%24expand,%24select}"; /** * Metadata for all the requests in the request builder. */ export declare const CreatedOnBehalfOfRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map