/** * @example * { * from: "6762f0d51bb69f9f2193bb7f", * into: "6762f0d51bb69f9f2193bb80" * } */ 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; }