intercom-client
Version:
Official Node bindings to the Intercom API
13 lines (12 loc) • 352 B
TypeScript
/**
* Contains details about name of the action that was initiated for conversation part type <code>custom_action_started</code>.
*/
export interface CustomActionStarted {
action?: CustomActionStarted.Action;
}
export declare namespace CustomActionStarted {
interface Action {
/** Name of the action */
name?: string;
}
}