@azure/communication-chat
Version:
Azure client library for Azure Communication Chat services
18 lines • 624 B
TypeScript
import type { ChatParticipant } from "./models.js";
export { SendReadReceiptRequest } from "../generated/src/models/index.js";
/** Participants to be added to the thread. */
export interface AddParticipantsRequest {
/** Participants to add to a chat thread. */
participants: ChatParticipant[];
}
/** Request payload for creating a chat thread. */
export interface CreateChatThreadRequest {
/** The chat thread topic. */
topic: string;
}
/** Details of the message to send. */
export interface SendMessageRequest {
/** Chat message content. */
content: string;
}
//# sourceMappingURL=requests.d.ts.map