Zendesk improvements

This commit is contained in:
ricardo
2020-04-06 19:11:50 -04:00
parent 931b73e1bd
commit adf3f62aab
7 changed files with 228 additions and 37 deletions

View File

@@ -1,3 +1,11 @@
import {
IDataObject,
} from 'n8n-workflow';
export interface IComment {
body?: string;
}
export interface ITicket {
subject?: string;
comment?: IComment;
@@ -7,8 +15,5 @@ export interface ITicket {
tags?: string[];
status?: string;
recipient?: string;
}
export interface IComment {
body?: string;
custom_fields?: IDataObject[];
}