intercom-client
Version:
Official Node bindings to the Intercom API
17 lines (16 loc) • 443 B
TypeScript
/**
* This file was auto-generated by Fern from our API Definition.
*/
/**
* @example
* {
* from: "667d60ac8a68186f43bafdbb",
* into: "667d60ac8a68186f43bafdbc"
* }
*/
export interface MergeContactsRequest {
/** The unique identifier for the contact to merge away from. Must be a lead. */
from: string;
/** The unique identifier for the contact to merge into. Must be a user. */
into: string;
}