/* Options: Date: 2025-12-11 14:43:10 Version: 8.30 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://catalog-jobs-dev.power.dev //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: BatterySolverByLocationRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/battery-solver/by-location", Verbs="POST") public static class BatterySolverByLocationRequest { public Integer locationId = null; public Date startDate = null; public Date endDate = null; public String apiAdress = null; public Integer getLocationId() { return locationId; } public BatterySolverByLocationRequest setLocationId(Integer value) { this.locationId = value; return this; } public Date getStartDate() { return startDate; } public BatterySolverByLocationRequest setStartDate(Date value) { this.startDate = value; return this; } public Date getEndDate() { return endDate; } public BatterySolverByLocationRequest setEndDate(Date value) { this.endDate = value; return this; } public String getApiAdress() { return apiAdress; } public BatterySolverByLocationRequest setApiAdress(String value) { this.apiAdress = value; return this; } } }