intercom-client
Version:
Official Node bindings to the Intercom API
53 lines (52 loc) • 1.14 kB
TypeScript
import type * as Intercom from "../../../../index.js";
/**
* @example
* {
* data_attribute_id: 1,
* body: {
* options: [{
* value: "1-10"
* }, {
* value: "11-20"
* }]
* }
* }
*
* @example
* {
* data_attribute_id: 1,
* body: {
* options: [{
* value: "1-10"
* }, {
* value: "11-50"
* }]
* }
* }
*
* @example
* {
* data_attribute_id: 1,
* body: {
* options: [{
* value: "1-10"
* }, {
* value: "11-20"
* }]
* }
* }
*
* @example
* {
* data_attribute_id: 1,
* body: {
* "description": "Trying to archieve",
* "archived": true
* }
* }
*/
export interface UpdateDataAttributeRequest {
/** The data attribute id */
data_attribute_id: number;
body: Intercom.UpdateDataAttributeRequestBody;
}