mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
✨ salesforce node
This commit is contained in:
25
packages/nodes-base/nodes/Salesforce/CaseInterface.ts
Normal file
25
packages/nodes-base/nodes/Salesforce/CaseInterface.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user