Files
Agent-n8n/n8n-n8n-1.109.2/packages/nodes-base/nodes/Salesforce/CaseInterface.ts

26 lines
491 B
TypeScript
Raw Normal View History

2025-09-08 04:48:28 +08:00
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;
}