File

projects/angular-material-extensions/google-maps-autocomplete/src/lib/interfaces/germand.address.interface.ts

Index

Properties

Properties

country
country: literal type
Type : literal type
Optional
displayAddress
displayAddress: string
Type : string
Optional
geoLocation
geoLocation: Location
Type : Location
Optional
gmID
gmID: string
Type : string
icon
icon: string
Type : string
Optional
id
id: string
Type : string
Optional
locality
locality: literal type
Type : literal type
Optional
name
name: string
Type : string
Optional
placeID
placeID: string
Type : string
postalCode
postalCode: number
Type : number
Optional
state
state: literal type
Type : literal type
Optional
streetName
streetName: string
Type : string
Optional
streetNumber
streetNumber: number
Type : number
Optional
sublocality
sublocality: string
Type : string
Optional
url
url: string
Type : string
Optional
vicinity
vicinity: string
Type : string
Optional
import {Location} from './location.interface';

/**
 * @author Anthony Nahas
 * @since 23.12.19
 * @version 1.0
 */
export interface GermanAddress {
  id?: string;
  gmID: string;
  placeID: string;
  name?: string;
  icon?: string;
  displayAddress?: string;
  postalCode?: number;
  streetNumber?: number;
  streetName?: string;
  sublocality?: string;
  locality?: {
    short?: string;
    long?: string;
  };
  state?: {
    short?: string;
    long?: string;
  };
  country?: {
    short?: string;
    long?: string;
  };
  vicinity?: string;
  url?: string;
  geoLocation?: Location;
}

result-matching ""

    No results matching ""