Table of Contents

Class GeocodedWaypoint

Namespace
GoogleMapsApi.Entities.Routes.Response
Assembly
GoogleMapsApi.dll

Geocoded information for a single waypoint.

public class GeocodedWaypoint
Inheritance
GeocodedWaypoint
Derived
Inherited Members

Properties

GeocoderStatus

Status of the geocode. 0 indicates success; non-zero values indicate an error.

[JsonPropertyName("geocoderStatus")]
public GeocoderStatus? GeocoderStatus { get; set; }

Property Value

GeocoderStatus

PartialMatch

True if the geocode was a partial match (the input was not exact).

[JsonPropertyName("partialMatch")]
public bool? PartialMatch { get; set; }

Property Value

bool?

PlaceId

Resulting place ID for the geocoded location.

[JsonPropertyName("placeId")]
public string? PlaceId { get; set; }

Property Value

string

Type

Place type tags (e.g. "street_address", "premise").

[JsonPropertyName("type")]
public List<string>? Type { get; set; }

Property Value

List<string>