/* Options: Date: 2024-12-23 11:21:28 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: LogFrontEndEventRequest.* //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/event", Verbs="POST") public static class LogFrontEndEventRequest implements IReturn, IPost { @Validate(Validator="NotEmpty") // @Validate(Validator="MaximumLength(256)") public String location = null; @Validate(Validator="NotEmpty") // @Validate(Validator="MaximumLength(128)") public String tag = null; @Validate(Validator="NotEmpty") // @Validate(Validator="MaximumLength(512)") public String message = null; public String getLocation() { return location; } public LogFrontEndEventRequest setLocation(String value) { this.location = value; return this; } public String getTag() { return tag; } public LogFrontEndEventRequest setTag(String value) { this.tag = value; return this; } public String getMessage() { return message; } public LogFrontEndEventRequest setMessage(String value) { this.message = value; return this; } private static Object responseType = LogFrontEndEventResponse.class; public Object getResponseType() { return responseType; } } public static class LogFrontEndEventResponse { public Date loggedAt = null; public Date getLoggedAt() { return loggedAt; } public LogFrontEndEventResponse setLoggedAt(Date value) { this.loggedAt = value; return this; } } }