Files
n8n-enterprise-unlocked/packages/nodes-base/nodes/Zendesk/TicketInterface.ts
Ricardo Espinoza 3448575a20 added zendesk node
2020-01-07 14:56:42 -05:00

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;
}