Table of Contents

Class ReverseGeocodeAddress

Namespace
Geotab.Checkmate.ObjectModel
Assembly
Geotab.Checkmate.ObjectModel.dll

true The address and Zone (if any found) returned by a reverse geocode operation.

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 string

The formatted address.

street string

The street.

streetName string

Name of the street.

streetNumber string

The street number.

city string

The city.

otherCity string

The other city.

region string

The region.

country string

The country.

postalCode string

The postal code.

zones List<Zone>

IList<T>

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

string

string

Country

Gets or sets the country name.

public string? Country { get; set; }

Property Value

string

string

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

string

string

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

string

string

PostalCode

Gets or sets the postal code (ZIP code in USA).

public string? PostalCode { get; set; }

Property Value

string

string

Region

Gets or sets the Region name. This is typically a province, state, region or constituent country.

public string? Region { get; set; }

Property Value

string

string

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

string

string

StreetName

Gets or sets the street name of the address.

public string? StreetName { get; set; }

Property Value

string

string

StreetNumber

Gets or sets the street number of the address.

public string? StreetNumber { get; set; }

Property Value

string

string

Zones

Gets or sets the collection of Zone(s) the address is within.

public List<Zone>? Zones { get; set; }

Property Value

List<Zone>

IList<T>