n8n/packages/nodes-base/nodes/Zendesk/TicketInterface.ts

15 lines
229 B
TypeScript
Raw Normal View History

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;
}
export interface IComment {
body?: string;
}