UNPKG

intercom-client

Version:

Official Node bindings to the Intercom API

20 lines (19 loc) 770 B
import type * as Intercom from "../index.js"; /** * Metadata for a conversation part */ export interface ConversationPartMetadata { /** The quick reply options sent by the Admin or bot, presented in this conversation part. */ quick_reply_options?: ConversationPartMetadata.QuickReplyOptions.Item[]; /** The unique identifier for the quick reply option that was clicked by the end user. */ quick_reply_uuid?: string; } export declare namespace ConversationPartMetadata { type QuickReplyOptions = QuickReplyOptions.Item[]; namespace QuickReplyOptions { interface Item extends Intercom.QuickReplyOption { /** The translations for the quick reply option. */ translations?: Record<string, unknown>; } } }