UNPKG

intercom-client

Version:

Official Node bindings to the Intercom API

12 lines (11 loc) 258 B
/** * */ export type CreateDataAttributeRequest = { data_type?: "options" | undefined; options: { value?: string | undefined; }[]; } | { data_type?: ("string" | "integer" | "float" | "boolean" | "datetime" | "date") | undefined; };