intercom-client
Version:
Official Node bindings to the Intercom API
23 lines (22 loc) • 828 B
TypeScript
/**
* Contains details about the workflow that was triggered and any Custom Data Attributes (CDAs) that were modified during the workflow execution for conversation part type <code>conversation_attribute_updated_by_workflow</code>.
*/
export interface ConversationAttributeUpdatedByWorkflow {
workflow?: ConversationAttributeUpdatedByWorkflow.Workflow;
attribute?: ConversationAttributeUpdatedByWorkflow.Attribute;
value?: ConversationAttributeUpdatedByWorkflow.Value;
}
export declare namespace ConversationAttributeUpdatedByWorkflow {
interface Workflow {
/** Name of the workflow */
name?: string;
}
interface Attribute {
/** Name of the CDA updated */
name?: string;
}
interface Value {
/** Value of the CDA updated */
name?: string;
}
}