@microsoft/msgraph-sdk-chats
Version:
Chats fluent API for Microsoft Graph
99 lines • 4.91 kB
TypeScript
import { type PinnedChatMessageInfo, type PinnedChatMessageInfoCollectionResponse } from '@microsoft/msgraph-sdk/models/index.js';
import { type CountRequestBuilder } from './count/index.js';
import { type PinnedChatMessageInfoItemRequestBuilder } from './item/index.js';
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
/**
* Provides operations to manage the pinnedMessages property of the microsoft.graph.chat entity.
*/
export interface PinnedMessagesRequestBuilder extends BaseRequestBuilder<PinnedMessagesRequestBuilder> {
/**
* Provides operations to count the resources in the collection.
*/
get count(): CountRequestBuilder;
/**
* Provides operations to manage the pinnedMessages property of the microsoft.graph.chat entity.
* @param pinnedChatMessageInfoId The unique identifier of pinnedChatMessageInfo
* @returns {PinnedChatMessageInfoItemRequestBuilder}
*/
byPinnedChatMessageInfoId(pinnedChatMessageInfoId: string): PinnedChatMessageInfoItemRequestBuilder;
/**
* Get a list of pinnedChatMessages in a chat.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<PinnedChatMessageInfoCollectionResponse>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
* @see {@link https://learn.microsoft.com/graph/api/chat-list-pinnedmessages?view=graph-rest-1.0|Find more info here}
*/
get(requestConfiguration?: RequestConfiguration<PinnedMessagesRequestBuilderGetQueryParameters> | undefined): Promise<PinnedChatMessageInfoCollectionResponse | undefined>;
/**
* Pin a chat message in the specified chat. This API cannot create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can pin a chat message.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<PinnedChatMessageInfo>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
* @see {@link https://learn.microsoft.com/graph/api/chat-post-pinnedmessages?view=graph-rest-1.0|Find more info here}
*/
post(body: PinnedChatMessageInfo, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<PinnedChatMessageInfo | undefined>;
/**
* Get a list of pinnedChatMessages in a chat.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toGetRequestInformation(requestConfiguration?: RequestConfiguration<PinnedMessagesRequestBuilderGetQueryParameters> | undefined): RequestInformation;
/**
* Pin a chat message in the specified chat. This API cannot create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can pin a chat message.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toPostRequestInformation(body: PinnedChatMessageInfo, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
}
/**
* Get a list of pinnedChatMessages in a chat.
*/
export interface PinnedMessagesRequestBuilderGetQueryParameters {
/**
* Include count of items
*/
count?: boolean;
/**
* Expand related entities
*/
expand?: string[];
/**
* Filter items by property values
*/
filter?: string;
/**
* Order items by property values
*/
orderby?: string[];
/**
* Search items by search phrases
*/
search?: string;
/**
* Select properties to be returned
*/
select?: string[];
/**
* Skip the first n items
*/
skip?: number;
/**
* Show only the first n items
*/
top?: number;
}
/**
* Uri template for the request builder.
*/
export declare const PinnedMessagesRequestBuilderUriTemplate = "{+baseurl}/chats/{chat%2Did}/pinnedMessages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}";
/**
* Metadata for all the navigation properties in the request builder.
*/
export declare const PinnedMessagesRequestBuilderNavigationMetadata: Record<Exclude<keyof PinnedMessagesRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
/**
* Metadata for all the requests in the request builder.
*/
export declare const PinnedMessagesRequestBuilderRequestsMetadata: RequestsMetadata;
//# sourceMappingURL=index.d.ts.map