/* Options: Date: 2024-12-23 11:59:52 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://consumer-api.brovs.com //Package: //GlobalNamespace: ConsumerApi //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: TestLogRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class ConsumerApi { @Route(Path="/log/test", Verbs="POST") public static class TestLogRequest implements IReturn, IPost { private static Object responseType = TestLogResponse.class; public Object getResponseType() { return responseType; } } public static class TestLogResponse { public String sentinel = null; public String getSentinel() { return sentinel; } public TestLogResponse setSentinel(String value) { this.sentinel = value; return this; } } }