/* Options: Date: 2026-04-04 01:19:12 SwiftVersion: 6.0 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: GetEstates.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Get all estates for the specified criteria */ // @Route("/estates") // @Api(Description="Get all estates for the specified criteria") public class GetEstates : IReturn, Codable { public typealias Return = GetEstatesResponse /** * Get an estate that matches the specified ID. */ // @ApiMember(Description="Get an estate that matches the specified ID.", Name="GeoEstateId") public var geoEstateId:String? /** * 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") public var recordStatus:String? required public init(){} } public class GetEstatesResponse : Codable { public var estates:[GeoEstateModel]? public var responseStatus:ResponseStatus? required public init(){} } public class GeoEstateModel : Codable { public var geoEstateId:String? public var name:String? public var notes:String? public var developerContactId:String? public var developerName:String? public var developerProfilePhotoUrl:String? public var developerProfilePhotoThumbnail:String? public var recordStatus:String? public var stages:[GeoEstateStageModel]? public var currentEstateStageId:String? public var currentEstateStageName:String? required public init(){} } public class GeoEstateStageModel : Codable { public var geoEstateStageId:String? public var geoEstateId:String? public var name:String? public var notes:String? public var recordStatus:String? required public init(){} }