UNPKG

intercom-client

Version:

Official Node bindings to the Intercom API

22 lines (21 loc) 551 B
import type * as Intercom from "../../../../index.mjs"; /** * @example * { * conversation_id: 1, * ticket_type_id: "53" * } * * @example * { * conversation_id: 1, * ticket_type_id: "54" * } */ export interface ConvertConversationToTicketRequest { /** The id of the conversation to target */ conversation_id: number; /** The ID of the type of ticket you want to convert the conversation to */ ticket_type_id: string; attributes?: Intercom.TicketRequestCustomAttributes; }