Web Services Developer's Guide → Web Services API Reference → SBM Administrative Web Services → Common Types → FileBufferBase64
The FileBufferBase64 type holds the actual contents of a file that you upload to the server in Base64. The FileBufferBase64 type parameters are listed below.
| Name | Type | Description | 
|---|---|---|
| data | base64Binary | Holds the Base64 encoded contents of the file. | 
None.
The following XML is a snippet of the FileBufferBase64 type.
<ae:GetFileAttachmentResponse>
   <ae:return xsi:type="ae:FileAttachmentContents">
      <ae:id>104</ae:id>
      <ae:name>my attachment</ae:name>
      <ae:fileName>fileName.txt</ae:fileName>
      <ae:showAsImage>false</ae:showAsImage>
      <ae:modificationDateTime>2010-09-17T18:46:25Z</ae:modificationDateTime>
      <ae:accessType>ATTACHACCESS-RESTRICTED</ae:accessType>
      <ae:contentsBase64>
         <ae:data>c2FtcGxlIGZpbGUgYXR0YWNobWVudA==</ae:data>
      </ae:contentsBase64>
   </ae:return>
</ae:GetFileAttachmentResponse>
 
    Copyright © 2007–2019 Micro Focus or one of its affiliates. All rights reserved.