Type alias Address

Address: {
    city: string | null;
    country: string | null;
    geocodeAccuracy: string | null;
    latitude: number | null;
    longitude: number | null;
    postalCode: string | null;
    state: string | null;
    street: string | null;
}

Type declaration

  • city: string | null
  • country: string | null
  • geocodeAccuracy: string | null
  • latitude: number | null
  • longitude: number | null
  • postalCode: string | null
  • state: string | null
  • street: string | null