/* Options: Date: 2025-07-04 08:56:23 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: GetDocumentExists.* //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}/exists", Verbs="GET") public static class GetDocumentExists implements IReturn { public UUID DocumentID = null; public UUID getDocumentID() { return DocumentID; } public GetDocumentExists setDocumentID(UUID value) { this.DocumentID = value; return this; } private static Object responseType = Boolean.class; public Object getResponseType() { return responseType; } } }