added zendesk node

This commit is contained in:
Ricardo Espinoza
2020-01-07 14:56:42 -05:00
parent 0cb7965101
commit 3448575a20
5 changed files with 760 additions and 6 deletions

View File

@@ -0,0 +1,16 @@
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;
}