UNPKG

intercom-client

Version:

Official Node bindings to the Intercom API

21 lines (20 loc) 685 B
/** * This file was auto-generated by Fern from our API Definition. */ /** * 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; } }