interface Place {
    addressNumber?: string;
    country?: string;
    geometry: undefined | PlaceGeometry;
    label?: string;
    municipality?: string;
    neighborhood?: string;
    postalCode?: string;
    region?: string;
    street?: string;
    subRegion?: string;
}

Properties

addressNumber?: string
country?: string
geometry: undefined | PlaceGeometry
label?: string
municipality?: string
neighborhood?: string
postalCode?: string
region?: string
street?: string
subRegion?: string