mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
17 lines
274 B
TypeScript
17 lines
274 B
TypeScript
import { IDataObject } from "n8n-workflow";
|
|
|
|
export interface ITicket {
|
|
subject?: string;
|
|
comment?: IComment;
|
|
type?: string;
|
|
group?: string;
|
|
external_id?: string;
|
|
tags?: string[];
|
|
status?: string;
|
|
recipient?: string;
|
|
}
|
|
|
|
export interface IComment {
|
|
body?: string;
|
|
}
|