UNPKG

intercom-client

Version:

Official Node bindings to the Intercom API

13 lines 383 B
import { AdminObject, Timestamp } from '..'; export type NoteObject = { type: 'note'; id: string; created_at: Timestamp; contact: { type: 'contact'; id: string; }; author?: Pick<AdminObject, 'type' | 'id' | 'name' | 'email' | 'away_mode_enabled' | 'away_mode_reassign' | 'avatar'>; body: string; }; //# sourceMappingURL=note.types.d.ts.map