UNPKG

@arkasuryawan/gp-interfaces

Version:

Geonet Properties Data Interfaces

23 lines (22 loc) 674 B
import { AddressInterface, AuditInterface, SourceList } from "./index"; import { AgentInterface } from "./agent.interface"; export interface AdditionalInformationContact { name: string; value: string; } export interface ContactInterface extends AuditInterface { firstName: string; lastName: string; phoneNumber: string; mobileNumber?: string; email: string; source?: SourceList; address: AddressInterface; canSeeContactAgentIds?: string[]; canSeeContactAgents?: AgentInterface[]; belongsToAgentId?: string; belongsToAgent?: AgentInterface; image: string; subscribed: string[]; status: "Active" | "Archived"; }