/* Options: Date: 2026-04-04 06:48:45 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetEstates.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class GeoEstateStageModel { public GeoEstateStageId: string; public GeoEstateId: string; public Name: string; public Notes: string; public RecordStatus: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class GeoEstateModel { public GeoEstateId: string; public Name: string; public Notes: string; public DeveloperContactId: string; public DeveloperName: string; public DeveloperProfilePhotoUrl: string; public DeveloperProfilePhotoThumbnail: string; public RecordStatus: string; public Stages: GeoEstateStageModel[]; public CurrentEstateStageId: string; public CurrentEstateStageName: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @DataContract export class ResponseStatus { // @DataMember(Order=1) public ErrorCode: string; // @DataMember(Order=2) public Message: string; // @DataMember(Order=3) public StackTrace: string; // @DataMember(Order=4) public Errors: ResponseError[]; // @DataMember(Order=5) public Meta: { [index:string]: string; }; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class GetEstatesResponse { public Estates: GeoEstateModel[]; public ResponseStatus: ResponseStatus; public constructor(init?: Partial) { (Object as any).assign(this, init); } } /** @description Get all estates for the specified criteria */ // @Route("/estates") // @Api(Description="Get all estates for the specified criteria") export class GetEstates implements IReturn { /** @description Get an estate that matches the specified ID. */ // @ApiMember(Description="Get an estate that matches the specified ID.", Name="GeoEstateId") public GeoEstateId: string; /** @description 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 RecordStatus: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetEstates'; } public getMethod() { return 'GET'; } public createResponse() { return new GetEstatesResponse(); } }