n8n/packages/nodes-base/nodes/Salesforce/AttachmentInterface.ts
Ricardo Espinoza 63a459ac92
Add filters to all getAll operations to Salesforce Node (#1292)
*  Add filters to all get:All operations

*  Small fix

* Add description to condition fields

*  Minor improvements to Salesforce-Node

Co-authored-by: Harshil <ghagrawal17@gmail.com>
Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
2021-01-13 10:45:41 +01:00

10 lines
172 B
TypeScript

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