n8n/packages/nodes-base/nodes/Salesforce/CaseInterface.ts
Michael Kret 91d7e16c81
n8n-3867-progressively-apply-prettier-to-all (#3873)
* 🔨 formatting nodes with prettier
2022-08-17 17:50:24 +02:00

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;
}