n8n/packages/nodes-base/nodes/Zendesk/TicketInterface.ts
Michael Kret 91d7e16c81
n8n-3867-progressively-apply-prettier-to-all (#3873)
* 🔨 formatting nodes with prettier
2022-08-17 17:50:24 +02:00

21 lines
372 B
TypeScript

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