/* Options: Date: 2026-01-22 01:49:46 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pecuario-backend.develsystems.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetMarketplaceLands.* //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="/api/v1/marketplace/lands", Verbs="GET") public static class GetMarketplaceLands implements IReturn, IGet { public Integer countryId = null; public Integer regionId = null; public Integer pageSize = null; public String offset = null; public Integer getCountryId() { return countryId; } public GetMarketplaceLands setCountryId(Integer value) { this.countryId = value; return this; } public Integer getRegionId() { return regionId; } public GetMarketplaceLands setRegionId(Integer value) { this.regionId = value; return this; } public Integer getPageSize() { return pageSize; } public GetMarketplaceLands setPageSize(Integer value) { this.pageSize = value; return this; } public String getOffset() { return offset; } public GetMarketplaceLands setOffset(String value) { this.offset = value; return this; } private static Object responseType = GetMarketplaceLandsResponse.class; public Object getResponseType() { return responseType; } } public static class GetMarketplaceLandsResponse extends BaseResponse { public ArrayList lands = null; public String offset = null; public ArrayList getLands() { return lands; } public GetMarketplaceLandsResponse setLands(ArrayList value) { this.lands = value; return this; } public String getOffset() { return offset; } public GetMarketplaceLandsResponse setOffset(String value) { this.offset = value; return this; } } public static class Status { public String message = null; public Integer statusCode = null; public String getMessage() { return message; } public Status setMessage(String value) { this.message = value; return this; } public Integer getStatusCode() { return statusCode; } public Status setStatusCode(Integer value) { this.statusCode = value; return this; } } public static class BaseResponse { public Status status = null; public Status getStatus() { return status; } public BaseResponse setStatus(Status value) { this.status = value; return this; } } public static class DashboardLand { public String id = null; public String description = null; public String image = null; public String type = null; public String price = null; public String cityRegionName = null; public String priceType = null; public String getId() { return id; } public DashboardLand setId(String value) { this.id = value; return this; } public String getDescription() { return description; } public DashboardLand setDescription(String value) { this.description = value; return this; } public String getImage() { return image; } public DashboardLand setImage(String value) { this.image = value; return this; } public String getType() { return type; } public DashboardLand setType(String value) { this.type = value; return this; } public String getPrice() { return price; } public DashboardLand setPrice(String value) { this.price = value; return this; } public String getCityRegionName() { return cityRegionName; } public DashboardLand setCityRegionName(String value) { this.cityRegionName = value; return this; } public String getPriceType() { return priceType; } public DashboardLand setPriceType(String value) { this.priceType = value; return this; } } }