Alokai

TicketEvent

Basic information about the ticket event. TicketEvent

export interface TicketEvent {
	'addedByAgent'?: boolean;
	'author'?: string;
	'code'?: string;
	'createdAt'?: string;
	'message': string;
	'ticketEventAttachments'?: Array<TicketEventAttachment>;
	'toStatus'?: TicketStatus;
}

Properties

NameRequiredTypeDescription
addedByAgentOptionalbooleanWhether an agent added this event. {boolean} TicketEvent
authorOptionalstringName of user who created this ticket event. {string} TicketEvent
codeOptionalstringEvent code is specific to each event. It is used to identify an event. {string} TicketEvent
createdAtOptionalstringDate and time of event creation. {string} TicketEvent
messageRequiredstringDetailed description of the question. {string} TicketEvent
ticketEventAttachmentsOptionalArray<TicketEventAttachment>{Array<TicketEventAttachment>} TicketEvent
toStatusOptionalTicketStatus{TicketStatus} TicketEvent

Referenced Types

On this page