/* Options: Date: 2024-10-18 04:35:26 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: Ping.* //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="/ping", Verbs="GET") public static class Ping implements IReturn { private static Object responseType = StringResponse.class; public Object getResponseType() { return responseType; } } public static class StringResponse { public String Value = null; public String getValue() { return Value; } public StringResponse setValue(String value) { this.Value = value; return this; } } }