mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
21 lines
380 B
TypeScript
21 lines
380 B
TypeScript
import type { IDataObject } from 'n8n-workflow';
|
|
|
|
export interface IComment {
|
|
body?: string;
|
|
html_body?: string;
|
|
public?: boolean;
|
|
}
|
|
|
|
export interface ITicket {
|
|
subject?: string;
|
|
comment?: IComment;
|
|
type?: string;
|
|
group_id?: number;
|
|
external_id?: string;
|
|
tags?: string[];
|
|
status?: string;
|
|
recipient?: string;
|
|
custom_fields?: IDataObject[];
|
|
assignee_email?: string;
|
|
}
|