AttachmentData Structure
This structure stores the name of the attachment, the comment about the attachment, the text content of the attachment, the boolean value to indicate if the attachment needs to be deleted, and the unique ID for the attachment.

Namespace:  Talisma.Server.Common
 

Syntax
C#
[SerializableAttribute]
public struct AttachmentData

The AttachmentData type exposes the following members.

Fields
NameDescription
Public fieldattachmentId
A unique ID used to identify an attachment in CampusNexus CRM.
Public fieldcomment
The User comment that describes the attachment.
Public fieldcreatedBy
The User who added the Attachment to the attachment tab.
Public fieldcreatedOn
The date when the attachment was added to the attachment tab.
Public fielddateModified
The date and time when the attachment was last modified.
Public fielddeleteAttachment
This value indicates whether the attachment should be deleted. You can use one of the following values:
  • True - The attachment is deleted.
  • False - The attachment is excluded from deletion.
Public fieldeditOption
This parameter is currently not in use.
Public fieldfileBlob
The text content of the attachment.
Public fieldfileName
Name of the attachment.
Public fieldfileSize
The size of the attachment file.
Top
See Also