UNPKG

intercom-client

Version:

Official Node bindings to the Intercom API

27 lines (26 loc) 778 B
/** * A linked conversation or ticket. */ export interface LinkedObject { /** ticket or conversation */ type?: LinkedObject.Type; /** The ID of the linked object */ id?: string; /** Category of the Linked Ticket Object. */ category?: LinkedObject.Category; } export declare namespace LinkedObject { /** ticket or conversation */ const Type: { readonly Ticket: "ticket"; readonly Conversation: "conversation"; }; type Type = (typeof Type)[keyof typeof Type]; /** Category of the Linked Ticket Object. */ const Category: { readonly Customer: "Customer"; readonly BackOffice: "Back-office"; readonly Tracker: "Tracker"; }; type Category = (typeof Category)[keyof typeof Category]; }