mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
15 lines
229 B
TypeScript
15 lines
229 B
TypeScript
|
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;
|
||
|
}
|