intercom-client
Version:
Official Node bindings to the Intercom API
45 lines (44 loc) • 2.29 kB
TypeScript
/**
* This file was auto-generated by Fern from our API Definition.
*/
import * as Intercom from "../index";
/**
* The Conversation Part that originated this conversation, which can be Contact, Admin, Campaign, Automated or Operator initiated.
*/
export interface ConversationSource {
/** This includes conversation, email, facebook, instagram, phone_call, phone_switch, push, sms, twitter and whatsapp. */
type: ConversationSource.Type;
/** The id representing the message. */
id: string;
/** The conversation's initiation type. Possible values are customer_initiated, campaigns_initiated (legacy campaigns), operator_initiated (Custom bot), automated (Series and other outbounds with dynamic audience message) and admin_initiated (fixed audience message, ticket initiated by an admin, group email). */
delivered_as: string;
/** Optional. The message subject. For Twitter, this will show a generic message regarding why the subject is obscured. */
subject: string;
/** The message body, which may contain HTML. For Twitter, this will show a generic message regarding why the body is obscured. */
body?: string;
author: Intercom.ConversationPartAuthor;
/** A list of attachments for the part. */
attachments?: Intercom.PartAttachment[];
/** The URL where the conversation was started. For Twitter, Email, and Bots, this will be blank. */
url?: string;
/** Whether or not the source message has been redacted. Only applicable for contact initiated messages. */
redacted: boolean;
}
export declare namespace ConversationSource {
/**
* This includes conversation, email, facebook, instagram, phone_call, phone_switch, push, sms, twitter and whatsapp.
*/
type Type = "conversation" | "email" | "facebook" | "instagram" | "phone_call" | "phone_switch" | "push" | "sms" | "twitter" | "whatsapp";
const Type: {
readonly Conversation: "conversation";
readonly Email: "email";
readonly Facebook: "facebook";
readonly Instagram: "instagram";
readonly PhoneCall: "phone_call";
readonly PhoneSwitch: "phone_switch";
readonly Push: "push";
readonly Sms: "sms";
readonly Twitter: "twitter";
readonly Whatsapp: "whatsapp";
};
}