/* Options: Date: 2025-06-13 05:27:33 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://ws.jimsnwa.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetAlertsByUserRQ.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route("/alerts/getbyuser") public static class GetAlertsByUserRQ implements IReturn { public String User = null; public Long Status = null; public String getUser() { return User; } public GetAlertsByUserRQ setUser(String value) { this.User = value; return this; } public Long getStatus() { return Status; } public GetAlertsByUserRQ setStatus(Long value) { this.Status = value; return this; } private static Object responseType = GetAlertsByUserRS.class; public Object getResponseType() { return responseType; } } public static class GetAlertsByUserRS extends CoreRS { public ArrayList Data = null; public ArrayList getData() { return Data; } public GetAlertsByUserRS setData(ArrayList value) { this.Data = value; return this; } } public static class SystemAlert { public Long GenerationType = null; public String GenerationTypeDesc = null; public Long AlertOrigin = null; public String AlertOriginDesc = null; public String Message = null; public Double Longitude = null; public Double Latitude = null; public String ModifiedUser = null; public Date ModifiedDate = null; public String ModifiedDateDesc = null; public String Notes = null; public String Fullinfo = null; public Long Status = null; public String StatusDesc = null; public Long getGenerationType() { return GenerationType; } public SystemAlert setGenerationType(Long value) { this.GenerationType = value; return this; } public String getGenerationTypeDesc() { return GenerationTypeDesc; } public SystemAlert setGenerationTypeDesc(String value) { this.GenerationTypeDesc = value; return this; } public Long getAlertOrigin() { return AlertOrigin; } public SystemAlert setAlertOrigin(Long value) { this.AlertOrigin = value; return this; } public String getAlertOriginDesc() { return AlertOriginDesc; } public SystemAlert setAlertOriginDesc(String value) { this.AlertOriginDesc = value; return this; } public String getMessage() { return Message; } public SystemAlert setMessage(String value) { this.Message = value; return this; } public Double getLongitude() { return Longitude; } public SystemAlert setLongitude(Double value) { this.Longitude = value; return this; } public Double getLatitude() { return Latitude; } public SystemAlert setLatitude(Double value) { this.Latitude = value; return this; } public String getModifiedUser() { return ModifiedUser; } public SystemAlert setModifiedUser(String value) { this.ModifiedUser = value; return this; } public Date getModifiedDate() { return ModifiedDate; } public SystemAlert setModifiedDate(Date value) { this.ModifiedDate = value; return this; } public String getModifiedDateDesc() { return ModifiedDateDesc; } public SystemAlert setModifiedDateDesc(String value) { this.ModifiedDateDesc = value; return this; } public String getNotes() { return Notes; } public SystemAlert setNotes(String value) { this.Notes = value; return this; } public String getFullinfo() { return Fullinfo; } public SystemAlert setFullinfo(String value) { this.Fullinfo = value; return this; } public Long getStatus() { return Status; } public SystemAlert setStatus(Long value) { this.Status = value; return this; } public String getStatusDesc() { return StatusDesc; } public SystemAlert setStatusDesc(String value) { this.StatusDesc = value; return this; } } public static class CoreRS { public String Code = null; public String ErrorMessage = null; public String ErrorStackTrace = null; public String getCode() { return Code; } public CoreRS setCode(String value) { this.Code = value; return this; } public String getErrorMessage() { return ErrorMessage; } public CoreRS setErrorMessage(String value) { this.ErrorMessage = value; return this; } public String getErrorStackTrace() { return ErrorStackTrace; } public CoreRS setErrorStackTrace(String value) { this.ErrorStackTrace = value; return this; } } }