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 FileUrl = null;
public Boolean getIsSucces() { return IsSucces; }
public UpdateDocumentWithFileResponse setIsSucces(Boolean value) { this.IsSucces = 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 .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /csv/reply/UpdateDocumentWithFile HTTP/1.1
Host: digiofficeapigateway.deltares.nl
Accept: text/csv
Content-Type: text/csv
Content-Length: length
{"DocumentId":"00000000-0000-0000-0000-000000000000","UpdateStorageSystem":false}
HTTP/1.1 200 OK Content-Type: text/csv Content-Length: length {"IsSucces":false,"FileUrl":"String"}