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; }