n8n/packages/nodes-base/nodes/Zendesk/TicketInterface.ts
2020-04-06 19:11:50 -04:00

20 lines
310 B
TypeScript

import {
IDataObject,
} from 'n8n-workflow';
export interface IComment {
body?: string;
}
export interface ITicket {
subject?: string;
comment?: IComment;
type?: string;
group?: string;
external_id?: string;
tags?: string[];
status?: string;
recipient?: string;
custom_fields?: IDataObject[];
}