/* Options: Date: 2026-04-04 01:23:11 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetEstates.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* /** * Get all estates for the specified criteria */ @Route(Path="/estates") @Api(Description="Get all estates for the specified criteria") open class GetEstates : IReturn { /** * Get an estate that matches the specified ID. */ @ApiMember(Description="Get an estate that matches the specified ID.", Name="GeoEstateId") open var GeoEstateId:UUID? = null /** * Get estates with a matching record status. A=active I=inactive D=deleted. */ @ApiMember(Description="Get estates with a matching record status. A=active I=inactive D=deleted.", Name="RecordStatus") open var RecordStatus:String? = null companion object { private val responseType = GetEstatesResponse::class.java } override fun getResponseType(): Any? = GetEstates.responseType } open class GetEstatesResponse { open var Estates:ArrayList? = null open var ResponseStatus:ResponseStatus? = null } open class GeoEstateModel { open var GeoEstateId:UUID? = null open var Name:String? = null open var Notes:String? = null open var DeveloperContactId:UUID? = null open var DeveloperName:String? = null open var DeveloperProfilePhotoUrl:String? = null open var DeveloperProfilePhotoThumbnail:String? = null open var RecordStatus:String? = null open var Stages:ArrayList? = null open var CurrentEstateStageId:UUID? = null open var CurrentEstateStageName:String? = null } open class GeoEstateStageModel { open var GeoEstateStageId:UUID? = null open var GeoEstateId:UUID? = null open var Name:String? = null open var Notes:String? = null open var RecordStatus:String? = null }