import { Base } from './base'; import { GeoPoint } from './geoPoint'; export class Address extends Base { county?: string; neighborhood?: string; postalCode?: string; state?: string; street?: string; exteriorNumber?: string; interiorNumber?: string; directions?: string; pinLocation?: GeoPoint; constructor(data: any | null = null) { super(); this.county = ''; this.neighborhood = ''; this.postalCode = ''; this.state = ''; this.street = ''; this.exteriorNumber = ''; this.interiorNumber = ''; this.directions = ''; this.pinLocation = new GeoPoint(); this.load(data); } }