1
0
Fork 0
mirror of https://github.com/n8n-io/n8n.git synced 2025-03-05 20:50:17 -08:00
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;
}