/* Options: Date: 2024-10-18 04:17:34 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://digiofficeapigateway.deltares.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; } } }