UNPKG

ns2-front-module-common

Version:
31 lines (30 loc) 875 B
import { RealtorInterface } from "../intefraces/realtor.interface"; import { PhoneInterface } from "../intefraces/phone.interface"; import { SocialModel } from './social.model'; export declare class RealtorModel implements RealtorInterface { guid: string; firstname: string; lastname: string; email: string; experience: number; avatar_guid: string; geo_guid: string; description: string; is_online: boolean; phones: Array<PhoneInterface>; specializations: string[]; districts: string[]; is_partner?: boolean; realty_count: any; is_agency: boolean; agency_position: string; agency_title: string; can_work_other_city: boolean; birthday: string | number; site_url: string; socials: SocialModel[]; rank: string; rank_title: string; customer_info: string; on_moderate: boolean; }