Class Verdict
- Namespace
- GoogleMapsApi.Entities.AddressValidation.Response
- Assembly
- GoogleMapsApi.dll
High-level summary of how well the input address could be validated.
public sealed class Verdict
- Inheritance
-
Verdict
- Inherited Members
Properties
AddressComplete
True if the address has no missing or unresolved components.
[JsonPropertyName("addressComplete")]
public bool AddressComplete { get; set; }
Property Value
GeocodeGranularity
Granularity at which the geocode for the address was determined.
[JsonPropertyName("geocodeGranularity")]
public Granularity GeocodeGranularity { get; set; }
Property Value
HasInferredComponents
True if Google inferred any address component (added information not in the input).
[JsonPropertyName("hasInferredComponents")]
public bool HasInferredComponents { get; set; }
Property Value
HasReplacedComponents
True if Google replaced any address component (e.g. corrected a misspelling or postal code).
[JsonPropertyName("hasReplacedComponents")]
public bool HasReplacedComponents { get; set; }
Property Value
HasUnconfirmedComponents
True if any address component is unconfirmed.
[JsonPropertyName("hasUnconfirmedComponents")]
public bool HasUnconfirmedComponents { get; set; }
Property Value
InputGranularity
Granularity of the input address as Google parsed it.
[JsonPropertyName("inputGranularity")]
public Granularity InputGranularity { get; set; }
Property Value
ValidationGranularity
Granularity at which Google was able to fully validate the address.
[JsonPropertyName("validationGranularity")]
public Granularity ValidationGranularity { get; set; }