Class ReverseGeocodeAddress
- Namespace
- Geotab.Checkmate.ObjectModel
- Assembly
- Geotab.Checkmate.ObjectModel.dll
public class ReverseGeocodeAddress
- Inheritance
-
ReverseGeocodeAddress
- Inherited Members
Constructors
ReverseGeocodeAddress()
Initializes a new instance of the ReverseGeocodeAddress class.The default constructor.
public ReverseGeocodeAddress()
ReverseGeocodeAddress(string?, string?, string?, string?, string?, string?, string?, string?, string?, List<Zone>?)
Initializes a new instance of the ReverseGeocodeAddress class.Creates a new ReverseGeocodeAddress instance.
public ReverseGeocodeAddress(string? formattedAddress, string? street, string? streetName, string? streetNumber, string? city, string? otherCity, string? region, string? country, string? postalCode, List<Zone>? zones)
Parameters
formattedAddress
stringThe formatted address.
street
stringThe street.
streetName
stringName of the street.
streetNumber
stringThe street number.
city
stringThe city.
otherCity
stringThe other city.
region
stringThe region.
country
stringThe country.
postalCode
stringThe postal code.
zones
List<Zone>
Properties
City
Gets or sets the city name. In some cases there is a suburb and city and these are contained in City and OtherCity respectively.
public string? City { get; set; }
Property Value
Country
Gets or sets the country name.
public string? Country { get; set; }
Property Value
FormattedAddress
Gets or sets the full formatted address, containing all the available information for street, province/state, postal/ZIP code and country.
public string? FormattedAddress { get; set; }
Property Value
OtherCity
Gets or sets the secondary or other city name. In some cases there is a suburb and city and these are contained in City and OtherCity respectively.
public string? OtherCity { get; set; }
Property Value
PostalCode
Gets or sets the postal code (ZIP code in USA).
public string? PostalCode { get; set; }
Property Value
Region
Gets or sets the Region name. This is typically a province, state, region or constituent country.
public string? Region { get; set; }
Property Value
Street
Gets or sets the street name of the address; this will not always include the street number.
public string? Street { get; set; }
Property Value
StreetName
Gets or sets the street name of the address.
public string? StreetName { get; set; }
Property Value
StreetNumber
Gets or sets the street number of the address.
public string? StreetNumber { get; set; }
Property Value
Zones
Gets or sets the collection of Zone(s) the address is within.
public List<Zone>? Zones { get; set; }