mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
26 lines
491 B
TypeScript
26 lines
491 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;
|
|
RecordTypeId?: string;
|
|
}
|
|
|
|
export interface ICaseComment {
|
|
CommentBody?: string;
|
|
ParentId?: string;
|
|
IsPublished?: boolean;
|
|
}
|