/* Options: Date: 2024-12-23 12:06: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: LogFrontEndErrorRequest.* //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/error", Verbs="POST") public static class LogFrontEndErrorRequest implements IReturn, IPost { public String location = null; public String message = null; public String stackTrace = null; public String getLocation() { return location; } public LogFrontEndErrorRequest setLocation(String value) { this.location = value; return this; } public String getMessage() { return message; } public LogFrontEndErrorRequest setMessage(String value) { this.message = value; return this; } public String getStackTrace() { return stackTrace; } public LogFrontEndErrorRequest setStackTrace(String value) { this.stackTrace = value; return this; } private static Object responseType = LogFrontEndErrorResponse.class; public Object getResponseType() { return responseType; } } public static class LogFrontEndErrorResponse { public Date loggedAt = null; public Date getLoggedAt() { return loggedAt; } public LogFrontEndErrorResponse setLoggedAt(Date value) { this.loggedAt = value; return this; } } }