Class Location
- Namespace
- Textkernel.Tx.Models
- Assembly
- Textkernel.Tx.SDK.dll
Represents a physical location on Earth (mostly used for addresses)
public class Location
- Inheritance
-
Location
- Inherited Members
Properties
CountryCode
The 2-letter ISO 3166 country code
public string CountryCode { get; set; }
Property Value
GeoCoordinates
If geocoding has been done, this is the lat/lon for the location
public GeocodedCoordinates GeoCoordinates { get; set; }
Property Value
Municipality
The City/Municipality/Town
public string Municipality { get; set; }
Property Value
PostalCode
The Postal or Zip code
public string PostalCode { get; set; }
Property Value
Regions
The Regions/Districts/States
public List<string> Regions { get; set; }
Property Value
StreetAddressLines
Street address lines
public List<string> StreetAddressLines { get; set; }