mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
26 lines
468 B
TypeScript
26 lines
468 B
TypeScript
|
|
export interface ICase {
|
|
Type?: string;
|
|
Origin?: string;
|
|
Reason?: string;
|
|
Status?: string;
|
|
OwnerId?: string;
|
|
Subject?: string;
|
|
ParentId?: string;
|
|
Priority?: string;
|
|
AccountId?: string;
|
|
ContactId?: string;
|
|
Description?: string;
|
|
IsEscalated?: boolean;
|
|
SuppliedName?: string;
|
|
SuppliedEmail?: string;
|
|
SuppliedPhone?: string;
|
|
SuppliedCompany?: string;
|
|
}
|
|
|
|
export interface ICaseComment {
|
|
CommentBody?: string;
|
|
ParentId?: string;
|
|
IsPublished?: boolean;
|
|
}
|