n8n/packages/nodes-base/nodes/Salesforce/AttachmentInterface.ts
2021-07-29 14:11:04 +02:00

10 lines
172 B
TypeScript

export interface IAttachment {
ParentId?: string;
Name?: string;
OwnerId?: string;
IsPrivate?: boolean;
ContentType?: string;
Description?: string;
Body?: string;
}