/* Options: Date: 2025-06-26 01:48:50 Version: 6.00 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://webservices.mbukdatabase.co.uk/MBOnlineCreditApplicationService //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: RAPPHeartbeat.* //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="/RAPPHeartbeat/", Verbs="GET") public static class RAPPHeartbeat implements IReturn { private static Object responseType = RAPPHeartbeatResponse.class; public Object getResponseType() { return responseType; } } public static class RAPPHeartbeatResponse { public String Message = null; public String getMessage() { return Message; } public RAPPHeartbeatResponse setMessage(String value) { this.Message = value; return this; } } }