InteractionAttachmentData Class
This structure contains the details of the attachment(s) in an Interaction.
Inheritance Hierarchy
SystemObject
  Talisma.Server.CommonInteractionAttachmentData

Namespace:  Talisma.Server.Common
 

Syntax
C#
[SerializableAttribute]
public class InteractionAttachmentData

The InteractionAttachmentData type exposes the following members.

Fields
NameDescription
Public fieldattachmentId
The ID of the attachment you want to insert to the Interaction.
Public fieldcId
The ID of the inline attachment if you are adding an attachment inline.
Public fieldcopyAttachmentFromServer
Whether the attachment you want to add must be copied from the server. You can add files that belong to other events by copying them from the server. You can specify one of the following values:
  • True - Specify this value if the file you want to add as an attachment must be copied from the server.
  • False - Specify this value if the file you want to add as an attachment must not be copied from the server.
Public fielddeleteAttachment
Whether you want to delete an attachment. You can specify one of the following values:
  • True - Specify this value if you want to delete the attachment.
  • False - Specify this value if you do not want to delete the attachment.
Public fieldeditAttachment
Whether you want to edit the attachment you are adding. You can specify one of the following values:
  • True - Specify this value if you want to edit the attachment.
  • False - Specify this value if you do not want to edit the attachment.
Public fieldeventId
The ID of the event associated with the create Interaction operation.
Public fieldfileBlob
The contents of the file you want to attach.
Public fieldfileName
The name of the file that is added as an attachment.
Public fieldisNewAttachment
Whether the attachment you want to add is a new attachment. You can specify one of the following values:
  • True - Specify this value if the attachment you want to add is new.
  • False - Specify this value if the attachment you want to add is an existing file from the server.
Public fieldretainAttachment
Whether you want to retain an attachment. You can specify one of the following values:
  • True - Specify this value if you want to retain the attachment ID and attachment content.
  • False - Specify this value if you do not want to retain the attachment ID and attachment content.
Public fieldsize
The size of the file you want to add as an attachment.
Top
See Also