import java.math.*;
import java.util.*;
import net.servicestack.client.*;
public class dtos
{
    public static class UpdateDocumentWithFile
    {
        public UUID DocumentId = null;
        public Boolean UpdateStorageSystem = null;
        
        public UUID getDocumentId() { return DocumentId; }
        public UpdateDocumentWithFile setDocumentId(UUID value) { this.DocumentId = value; return this; }
        public Boolean isUpdateStorageSystem() { return UpdateStorageSystem; }
        public UpdateDocumentWithFile setUpdateStorageSystem(Boolean value) { this.UpdateStorageSystem = value; return this; }
    }
    public static class UpdateDocumentWithFileResponse
    {
        public Boolean IsSucces = null;
        public String FailureReason = null;
        public String FileUrl = null;
        
        public Boolean getIsSucces() { return IsSucces; }
        public UpdateDocumentWithFileResponse setIsSucces(Boolean value) { this.IsSucces = value; return this; }
        public String getFailureReason() { return FailureReason; }
        public UpdateDocumentWithFileResponse setFailureReason(String value) { this.FailureReason = value; return this; }
        public String getFileUrl() { return FileUrl; }
        public UpdateDocumentWithFileResponse setFileUrl(String value) { this.FileUrl = value; return this; }
    }
}
Java UpdateDocumentWithFile DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /xml/reply/UpdateDocumentWithFile HTTP/1.1 
Host: doapigw.baasbv.nl 
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<UpdateDocumentWithFile xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IDB.API.DTO.Document.Operations">
  <DocumentId>00000000-0000-0000-0000-000000000000</DocumentId>
  <UpdateStorageSystem>false</UpdateStorageSystem>
</UpdateDocumentWithFile>
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <UpdateDocumentWithFileResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IDB.API.DTO.Document.Operations"> <FailureReason>String</FailureReason> <FileUrl>String</FileUrl> <IsSucces>false</IsSucces> </UpdateDocumentWithFileResponse>