import { IAddress } from "./types"; import { Base, BaseConstructorPayload } from "./Base"; export type PropertyConstructorPayload = { pid: string; group_doc_id: string; unitId: string; address: IAddress; accountId: string; propertyStatus: string; } & BaseConstructorPayload; /** * Property Object Class */ export declare class Property extends Base { private _pid; private _group_doc_id; private _unitId; private _address; private _accountId; private _propertyStatus; constructor(pcp: PropertyConstructorPayload); get pid(): string; get group_doc_id(): string; get unitId(): string; get address(): import("./types").AddressType; get accountId(): string; get propertyStatus(): string; /** * Print the class properties as an object * @return Property */ toObject(): any; } //# sourceMappingURL=Property.d.ts.map