intercom-client
Version:
Official Node bindings to the Intercom API
23 lines (22 loc) • 850 B
TypeScript
/**
* This file was auto-generated by Fern from our API Definition.
*/
import * as Intercom from "../../../index";
/**
* 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.unstable.QuickReplyOption {
/** The translations for the quick reply option. */
translations?: Record<string, unknown>;
}
}
}