/* Options: Date: 2025-07-04 10:16:31 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: GetDocumentUploadDetailsList.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { public static class GetDocumentUploadDetailsList implements IReturn> { /** * Give one or more specific documentupload IDs separated by a semicolon (;) */ @ApiMember(Description="Give one or more specific documentupload IDs separated by a semicolon (;)", IsRequired=true) public String IDs = null; public String getIDs() { return IDs; } public GetDocumentUploadDetailsList setIDs(String value) { this.IDs = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } }