@twilio/flex-ui
Version:
Twilio Flex UI
20 lines (19 loc) • 655 B
TypeScript
import { TransfersConfig } from "../models/FeatureFlagsModel";
export interface NotesResponse {
sid: string;
}
export interface TransferSettingsResponse {
transfer_settings: TransfersConfig[];
}
export interface AISummaryNoteProps {
interactionSid: string;
channelSid: string;
taskSid: string;
participantSid: string;
}
declare class NotesService {
submitNote(notes: string, { interactionSid, channelSid }: any): Promise<NotesResponse>;
fetchAISummaryNote({ interactionSid, channelSid, taskSid, participantSid }: AISummaryNoteProps): Promise<NotesResponse>;
}
declare const _default: NotesService;
export default _default;