IAttachmentManager

IAttachmentManager interface

Represents an attachment manager for ad hoc files to be displayed as available attachments for a DocGen Package.

Namespace: LOOP

Package: Nintex DocGen for Salesforce

Syntax

global interface IAttachmentManager

The IAttachementManager interface exposes the following members:

Methods

Member name Description
IAttachmentManager.getAttachments method Gets a list of ad hoc files to be displayed as available attachments for the specified DocGen Package.

Remarks

The getAttachments method must be implemented when this interface is implemented.

IAttachmentManager methods

The IAttachmentManager interface exposes the following members:

Methods

Member name Description
IAttachmentManager.getAttachments method Gets a list of ad hoc files to be displayed as available attachments for the specified DocGen Package.

IAttachmentManager.getAttachments method

Gets a list of ad hoc files to be displayed as available attachments for the specified DocGen Package.

Namespace: LOOP

Package: Nintex DocGen for Salesforce

Syntax

List<Attachment> getAttachments(Id ddpId, Id eid, Set<Id> topLevelIds, Set<Id> attachmentParentIds)

Parameters

ddpId

Type: Id

The ID of the DocGen Package.

eid

Type: Id

The ID of the primary object from which the DocGen Package is being run.

topLevelIds

Type: Set<Id>

The set of IDs for other top-level objects for the DocGen Package being run.

attachmentParentIds

Type: Set<Id>

The set of IDs for other top-level objects that contain attachments to be included from the return value.

Return Value

Type: List<Attachment>

A list of Attachment objects, to be displayed for the specified DocGen Package.

Related topic

Loop namespace