/* Options: Date: 2025-05-06 18:59:55 Version: 8.70 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://unstable-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.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; 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; } } }