UNPKG

intercom-client

Version:

[![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-Built%20with%20Fern-brightgreen)](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2Fintercom%2Fintercom-node) [![npm shield](ht

38 lines (37 loc) 1.11 kB
/** * This file was auto-generated by Fern from our API Definition. */ import * as Intercom from "../index"; /** * A Ticket Part representing a note, comment, or quick_reply on a ticket */ export interface TicketReply { /** Always ticket_part */ type: "ticket_part"; /** The id representing the part. */ id: string; /** Type of the part */ part_type: TicketReply.PartType; /** The message body, which may contain HTML. */ body?: string; /** The time the note was created. */ created_at: number; /** The last time the note was updated. */ updated_at?: number; author?: Intercom.TicketPartAuthor; /** A list of attachments for the part. */ attachments?: Intercom.PartAttachment[]; /** Whether or not the ticket part has been redacted. */ redacted?: boolean; } export declare namespace TicketReply { /** * Type of the part */ type PartType = "note" | "comment" | "quick_reply"; const PartType: { readonly Note: "note"; readonly Comment: "comment"; readonly QuickReply: "quick_reply"; }; }