/* Options: Date: 2025-12-06 07:00:34 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ErrorLogRequest.* //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 { @Route(Path="/v1/ErrorLog", Verbs="GET,POST,OPTIONS") public static class ErrorLogRequest implements IReturn { public ArrayList ErrorLog = new ArrayList(); public ArrayList getErrorLog() { return ErrorLog; } public ErrorLogRequest setErrorLog(ArrayList value) { this.ErrorLog = value; return this; } private static Object responseType = ErrorLogResponse.class; public Object getResponseType() { return responseType; } } public static class ErrorLogResponse { public ResponseStatus ResponseStatus = null; public ArrayList ErrorLog = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public ErrorLogResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getErrorLog() { return ErrorLog; } public ErrorLogResponse setErrorLog(ArrayList value) { this.ErrorLog = value; return this; } } public static class ErrorLog { public Integer ErrorLogId = null; public String Message = null; public String Page = null; public Integer LineNumber = null; public Integer ColNumber = null; public String UserAgent = null; public Date LogDate = null; public Integer getErrorLogId() { return ErrorLogId; } public ErrorLog setErrorLogId(Integer value) { this.ErrorLogId = value; return this; } public String getMessage() { return Message; } public ErrorLog setMessage(String value) { this.Message = value; return this; } public String getPage() { return Page; } public ErrorLog setPage(String value) { this.Page = value; return this; } public Integer getLineNumber() { return LineNumber; } public ErrorLog setLineNumber(Integer value) { this.LineNumber = value; return this; } public Integer getColNumber() { return ColNumber; } public ErrorLog setColNumber(Integer value) { this.ColNumber = value; return this; } public String getUserAgent() { return UserAgent; } public ErrorLog setUserAgent(String value) { this.UserAgent = value; return this; } public Date getLogDate() { return LogDate; } public ErrorLog setLogDate(Date value) { this.LogDate = value; return this; } } }