import type * as Intercom from "../../../../index.js"; /** * @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; }