2023-01-27 03:22:44 -08:00
|
|
|
import type { IDataObject } from 'n8n-workflow';
|
2020-04-06 16:11:50 -07:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
export interface IComment {
|
2020-04-06 16:11:50 -07:00
|
|
|
body?: string;
|
2021-10-13 16:45:53 -07:00
|
|
|
html_body?: string;
|
|
|
|
public?: boolean;
|
2020-04-06 16:11:50 -07:00
|
|
|
}
|
|
|
|
|
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[];
|
2021-10-13 16:45:53 -07:00
|
|
|
assignee_email?: string;
|
2020-01-07 11:56:42 -08:00
|
|
|
}
|