UNPKG

intercom-client

Version:

Official Node bindings to the Intercom API

18 lines (17 loc) 612 B
/** * Contains details about Custom Data Attributes (CDAs) that were modified by an admin (operator) for conversation part type <code>conversation_attribute_updated_by_admin</code>. */ export interface ConversationAttributeUpdatedByAdmin { attribute?: ConversationAttributeUpdatedByAdmin.Attribute; value?: ConversationAttributeUpdatedByAdmin.Value; } export declare namespace ConversationAttributeUpdatedByAdmin { interface Attribute { /** Name of the CDA updated */ name?: string; } interface Value { /** Value of the CDA updated */ name?: string; } }