mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 12:35:46 +03:00
91d7e16c81
* 🔨 formatting nodes with prettier
21 lines
372 B
TypeScript
21 lines
372 B
TypeScript
import { IDataObject } from 'n8n-workflow';
|
|
|
|
export interface IComment {
|
|
body?: string;
|
|
html_body?: string;
|
|
public?: boolean;
|
|
}
|
|
|
|
export interface ITicket {
|
|
subject?: string;
|
|
comment?: IComment;
|
|
type?: string;
|
|
group?: string;
|
|
external_id?: string;
|
|
tags?: string[];
|
|
status?: string;
|
|
recipient?: string;
|
|
custom_fields?: IDataObject[];
|
|
assignee_email?: string;
|
|
}
|