n8n/packages/nodes-base/nodes/Salesforce/CaseInterface.ts

26 lines
491 B
TypeScript
Raw Normal View History

2020-02-10 12:55: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;
2020-02-10 12:55:28 -08:00
}
export interface ICaseComment {
CommentBody?: string;
ParentId?: string;
IsPublished?: boolean;
}