/* Options: Date: 2025-06-13 07:39:06 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: GetCitizenReportsByCitizenRQ.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route("/citizen/getReportByCitizen") public static class GetCitizenReportsByCitizenRQ implements IReturn { public String Email = null; public String getEmail() { return Email; } public GetCitizenReportsByCitizenRQ setEmail(String value) { this.Email = value; return this; } private static Object responseType = GetCitizenReportsByCitizenRS.class; public Object getResponseType() { return responseType; } } public static class GetCitizenReportsByCitizenRS extends CoreRS { public ArrayList Data = null; public ArrayList getData() { return Data; } public GetCitizenReportsByCitizenRS setData(ArrayList value) { this.Data = value; return this; } } public static class CitizenReport { public Long ReportId = null; public Long CitizenId = null; public String Email = null; public Long ReportType = null; public String ReportDesc = null; public Long Status = null; public String StatusDesc = null; public String Report = null; public HashMap Fields = null; public Double Longitude = null; public Double Latitude = null; public Integer InvolvedinIndicent = null; public Date CreatedDate = null; public String CreatedDateDesc = null; public ArrayList> Follow = null; public ArrayList Files = null; public Long getReportId() { return ReportId; } public CitizenReport setReportId(Long value) { this.ReportId = value; return this; } public Long getCitizenId() { return CitizenId; } public CitizenReport setCitizenId(Long value) { this.CitizenId = value; return this; } public String getEmail() { return Email; } public CitizenReport setEmail(String value) { this.Email = value; return this; } public Long getReportType() { return ReportType; } public CitizenReport setReportType(Long value) { this.ReportType = value; return this; } public String getReportDesc() { return ReportDesc; } public CitizenReport setReportDesc(String value) { this.ReportDesc = value; return this; } public Long getStatus() { return Status; } public CitizenReport setStatus(Long value) { this.Status = value; return this; } public String getStatusDesc() { return StatusDesc; } public CitizenReport setStatusDesc(String value) { this.StatusDesc = value; return this; } public String getReport() { return Report; } public CitizenReport setReport(String value) { this.Report = value; return this; } public HashMap getFields() { return Fields; } public CitizenReport setFields(HashMap value) { this.Fields = value; return this; } public Double getLongitude() { return Longitude; } public CitizenReport setLongitude(Double value) { this.Longitude = value; return this; } public Double getLatitude() { return Latitude; } public CitizenReport setLatitude(Double value) { this.Latitude = value; return this; } public Integer getInvolvedinIndicent() { return InvolvedinIndicent; } public CitizenReport setInvolvedinIndicent(Integer value) { this.InvolvedinIndicent = value; return this; } public Date getCreatedDate() { return CreatedDate; } public CitizenReport setCreatedDate(Date value) { this.CreatedDate = value; return this; } public String getCreatedDateDesc() { return CreatedDateDesc; } public CitizenReport setCreatedDateDesc(String value) { this.CreatedDateDesc = value; return this; } public ArrayList> getFollow() { return Follow; } public CitizenReport setFollow(ArrayList> value) { this.Follow = value; return this; } public ArrayList getFiles() { return Files; } public CitizenReport setFiles(ArrayList value) { this.Files = 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; } } }