/* Options: Date: 2025-07-04 07:50:49 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetDocumentExportFile.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/documents/{DocumentID}/export", Verbs="GET") public static class GetDocumentExportFile implements IReturn { public UUID DocumentID = null; public UUID getDocumentID() { return DocumentID; } public GetDocumentExportFile setDocumentID(UUID value) { this.DocumentID = value; return this; } private static Object responseType = byte[].class; public Object getResponseType() { return responseType; } } }