UNPKG

intercom-client

Version:

Official Node bindings to the Intercom API

13 lines (12 loc) 304 B
/** * Update an existing visitor. */ export type UpdateVisitorRequest = { id: string; name?: string | undefined; custom_attributes?: Record<string, string> | undefined; } | { user_id: string; name?: string | undefined; custom_attributes?: Record<string, string> | undefined; };