intercom-client
Version:
Official Node bindings to the Intercom API
17 lines • 421 B
TypeScript
import { Timestamp } from '../common/common.types';
export interface MessageObject {
type: string;
id: string;
created_at: Timestamp;
subject?: string;
body: string;
message_type: MessageType;
conversation_id?: string;
}
export declare enum MessageType {
EMAIL = "email",
INAPP = "inapp",
FACEBOOK = "facebook",
TWITTER = "twitter"
}
//# sourceMappingURL=message.types.d.ts.map