/* Options: Date: 2026-01-22 01:55:14 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pecuario-backend.develsystems.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetMarketplaceLands.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.* import java.util.* import net.servicestack.client.* import com.google.gson.annotations.* import com.google.gson.reflect.* @Route(Path="/api/v1/marketplace/lands", Verbs="GET") open class GetMarketplaceLands : IReturn, IGet { var countryId:Int? = null var regionId:Int? = null var pageSize:Int? = null var offset:String? = null companion object { private val responseType = GetMarketplaceLandsResponse::class.java } override fun getResponseType(): Any? = GetMarketplaceLands.responseType } open class GetMarketplaceLandsResponse : BaseResponse() { var lands:ArrayList = ArrayList() var offset:String? = null } open class Status { var message:String? = null var statusCode:Int? = null } open class BaseResponse { var status:Status? = null } open class DashboardLand { var id:String? = null var description:String? = null var image:String? = null @SerializedName("type") var Type:String? = null var price:String? = null var cityRegionName:String? = null var priceType:String? = null }