/* Options: Date: 2026-02-14 10:05:15 Version: 10.04 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stf-api-uat.data-xchange.co.za //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: Ping.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { /** * Ping */ @Route(Path="/ping", Verbs="POST") @Api(Description="Ping") @ApiResponse(Description="Ping response message", StatusCode=200) public static class Ping implements IReturn { @ApiMember(DataType="string", IsRequired=true, Name="Message", ParameterType="body") public String message = null; public String getMessage() { return message; } public Ping setMessage(String value) { this.message = value; return this; } private static Object responseType = PingResponse.class; public Object getResponseType() { return responseType; } } public static class PingResponse { public String message = null; public String glnNumber = null; public String getMessage() { return message; } public PingResponse setMessage(String value) { this.message = value; return this; } public String getGlnNumber() { return glnNumber; } public PingResponse setGlnNumber(String value) { this.glnNumber = value; return this; } } }