import { ApplicationConversationStatusCategory } from './conversationTypesV2'; import { ApplicationTicketStatusId } from './idTypesV2'; import { ApplicationPaginatedResults } from './paginationTypesV2'; export interface ApplicationTicketStatus { /** Unique ID of the ticket status. */ id: ApplicationTicketStatusId; /** Name of the ticket status. */ name: string; /** Category of the ticket status. */ category: ApplicationConversationStatusCategory; /** Description of the ticket status. */ description?: string; /** Timestamp when the ticket status was last updated. */ updatedAt: number; /** Timestamp when the ticket status was created. */ createdAt: number; } export type ApplicationTicketStatusList = ApplicationPaginatedResults;