UNPKG

@microsoft/msgraph-beta-sdk-groups

Version:
28 lines 1.7 kB
import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Provides operations to call the resetUnseenCount method. */ export interface ResetUnseenCountRequestBuilder extends BaseRequestBuilder<ResetUnseenCountRequestBuilder> { /** * Reset the unseenCount of all the posts that the current user hasn't seen since their last visit. Supported for Microsoft 365 groups only. * @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 * @see {@link https://learn.microsoft.com/graph/api/group-resetunseencount?view=graph-rest-beta|Find more info here} */ post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>; /** * Reset the unseenCount of all the posts that the current user hasn't seen since their last visit. Supported for Microsoft 365 groups only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toPostRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; } /** * Uri template for the request builder. */ export declare const ResetUnseenCountRequestBuilderUriTemplate = "{+baseurl}/groups/{group%2Did}/resetUnseenCount"; /** * Metadata for all the requests in the request builder. */ export declare const ResetUnseenCountRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map