UNPKG

intercom-client

Version:

Official Node bindings to the Intercom API

33 lines (32 loc) 1.18 kB
/** * This file was auto-generated by Fern from our API Definition. */ /** * The request payload for updating a ticket type. * You can copy the `icon` property for your ticket type from [Twemoji Cheatsheet](https://twemoji-cheatsheet.vercel.app/) */ export interface UpdateTicketTypeRequestBody { /** The name of the ticket type. */ name?: string; /** The description of the ticket type. */ description?: string; /** Category of the Ticket Type. */ category?: UpdateTicketTypeRequestBody.Category; /** The icon of the ticket type. */ icon?: string; /** The archived status of the ticket type. */ archived?: boolean; /** Whether the tickets associated with this ticket type are intended for internal use only or will be shared with customers. This is currently a limited attribute. */ is_internal?: boolean; } export declare namespace UpdateTicketTypeRequestBody { /** * Category of the Ticket Type. */ type Category = "Customer" | "Back-office" | "Tracker"; const Category: { readonly Customer: "Customer"; readonly BackOffice: "Back-office"; readonly Tracker: "Tracker"; }; }