UNPKG

intercom-client

Version:

Official Node bindings to the Intercom API

63 lines (62 loc) 1.37 kB
/** * This file was auto-generated by Fern from our API Definition. */ import * as Intercom from "../../../../index"; /** * @example * { * conversation_id: "123", * body: { * message_type: "close", * type: "admin", * admin_id: "12345" * } * } * * @example * { * conversation_id: "123", * body: { * message_type: "snoozed", * admin_id: "5017691", * snoozed_until: 1673609604 * } * } * * @example * { * conversation_id: "123", * body: { * message_type: "open", * admin_id: "5017690" * } * } * * @example * { * conversation_id: "123", * body: { * message_type: "assignment", * type: "admin", * admin_id: "12345", * assignee_id: "4324241" * } * } * * @example * { * conversation_id: "123", * body: { * message_type: "close", * type: "admin", * admin_id: "12345" * } * } */ export interface ManageConversationPartsRequest { /** * The identifier for the conversation as given by Intercom. */ conversation_id: string; body: Intercom.ConversationsManageRequestBody; }