import type * as Intercom from "../../../../index.js"; /** * @example * { * ticket_id: "123", * body: { * message_type: "comment", * type: "user", * body: "Thanks again :)", * intercom_user_id: "6762f2971bb69f9f2193bc49" * } * } * * @example * { * ticket_id: "123", * body: { * message_type: "note", * type: "admin", * body: "

An Unordered HTML List

An Ordered HTML List

  1. Coffee
  2. Tea
  3. Milk
", * admin_id: "3156780" * } * } * * @example * { * ticket_id: "123", * body: { * message_type: "quick_reply", * type: "admin", * admin_id: "3156780", * reply_options: [{ * text: "Yes", * uuid: "0df48b85-9a93-4c66-a167-753eff0baaec" * }, { * text: "No", * uuid: "4f0b5145-4193-4b4f-8cad-ce19478a3938" * }] * } * } * * @example * { * ticket_id: "123", * body: { * message_type: "comment", * type: "user", * body: "Thanks again :)", * intercom_user_id: "6762f2a41bb69f9f2193bc4c" * } * } * * @example * { * ticket_id: "123", * body: { * message_type: "comment", * type: "user", * body: "Thanks again :)", * intercom_user_id: "6762f2971bb69f9f2193bc49" * } * } * * @example * { * ticket_id: "123", * body: { * message_type: "comment", * type: "user", * body: "Thanks again :)", * intercom_user_id: "6762f2971bb69f9f2193bc49" * } * } */ export interface ReplyToTicketRequest { ticket_id: string; body: Intercom.TicketsReplyRequestBody; }