1
0
Fork 0
mirror of https://github.com/n8n-io/n8n.git synced 2025-03-05 20:50:17 -08:00
n8n/packages/nodes-base/nodes/Zendesk/TicketInterface.ts

20 lines
310 B
TypeScript
Raw Normal View History

2020-04-06 16:11:50 -07:00
import {
IDataObject,
} from 'n8n-workflow';
export interface IComment {
body?: string;
}
2020-01-07 11:56:42 -08:00
export interface ITicket {
subject?: string;
comment?: IComment;
type?: string;
group?: string;
external_id?: string;
tags?: string[];
status?: string;
recipient?: string;
2020-04-06 16:11:50 -07:00
custom_fields?: IDataObject[];
2020-01-07 11:56:42 -08:00
}