intercom-client
Version:
Official Node bindings to the Intercom API
20 lines (19 loc) • 582 B
TypeScript
import type * as Intercom from "../../../../index.js";
/**
* @example
* {
* event_id: "evt_67890",
* external_conversation_id: "conv_13579",
* contact: {
* type: "user",
* external_id: "user_003",
* name: "Alice Example",
* email: "alice@example.com"
* },
* quick_reply_option_id: "1234"
* }
*/
export interface NotifyQuickReplySelectedRequest extends Intercom.CustomChannelBaseEvent {
/** Id of the selected quick reply option. */
quick_reply_option_id: string;
}