/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ /** * User actions. Use this to provide users with detailed info * about their chat partner's actions: typing or sending attachments of all kinds. * * - Typing: User is typing. * - Cancel: Invalidate all previous action updates. * E.g. when user deletes entered text or aborts a video upload. */ export type WebitelChatServerUserAction = (typeof WebitelChatServerUserAction)[keyof typeof WebitelChatServerUserAction]; export declare const WebitelChatServerUserAction: { readonly Typing: "Typing"; readonly Cancel: "Cancel"; };