intercom-client
Version:
Official Node bindings to the Intercom API
16 lines (15 loc) • 377 B
TypeScript
/**
* This file was auto-generated by Fern from our API Definition.
*/
/**
* 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;
};