UNPKG

intercom-client

Version:

Official Node bindings to the Intercom API

15 lines (14 loc) 451 B
import type * as Intercom from "../../../../index.js"; /** * @example * { * model: "contact", * include_archived: true * } */ export interface ListDataAttributesRequest { /** Specify the data attribute model to return. */ model?: Intercom.DataAttributesListRequestModel; /** Include archived attributes in the list. By default we return only non archived data attributes. */ include_archived?: boolean; }