Interface: DownloadAttachmentDto
Content of attachment
export
interface
DownloadAttachmentDto
Table of contents
Properties
Properties
base64FileContents
• base64FileContents: string
Base64 encoded string of attachment bytes. Decode the base64 encoded string to get the raw contents. If the file has a content type such as text/html
you can read the contents directly by converting it to string using utf-8
encoding.
memberof
DownloadAttachmentDto
contentType
• contentType: string
Content type of attachment. Examples are image/png
, application/msword
, text/csv
etc.
memberof
DownloadAttachmentDto
sizeBytes
• sizeBytes: number
Size in bytes of attachment content
memberof
DownloadAttachmentDto