UNPKG

intercom-client

Version:

Official Node bindings to the Intercom API

23 lines (22 loc) 555 B
/** * This file was auto-generated by Fern from our API Definition. */ /** * A recipient of a message */ export interface Recipient { /** The role associated to the contact - `user` or `lead`. */ type: Recipient.Type; /** The identifier for the contact which is given by Intercom. */ id: string; } export declare namespace Recipient { /** * The role associated to the contact - `user` or `lead`. */ type Type = "user" | "lead"; const Type: { readonly User: "user"; readonly Lead: "lead"; }; }