Files
Agent-n8n/n8n-n8n-1.109.2/packages/nodes-base/nodes/Zendesk/TicketInterface.ts
2025-09-08 04:48:28 +08:00

21 lines
380 B
TypeScript
Executable File

import type { IDataObject } from 'n8n-workflow';
export interface IComment {
body?: string;
html_body?: string;
public?: boolean;
}
export interface ITicket {
subject?: string;
comment?: IComment;
type?: string;
group_id?: number;
external_id?: string;
tags?: string[];
status?: string;
recipient?: string;
custom_fields?: IDataObject[];
assignee_email?: string;
}