mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
✨ added zendesk node
This commit is contained in:
16
packages/nodes-base/nodes/Zendesk/TicketInterface.ts
Normal file
16
packages/nodes-base/nodes/Zendesk/TicketInterface.ts
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user