Table of Contents

Class AddressValidationResponse

Namespace
GoogleMapsApi.Entities.AddressValidation.Response
Assembly
GoogleMapsApi.dll

Response from the Google Address Validation API. Contains the validation result and a response identifier that callers should pass back as PreviousResponseId when re-validating the same address after a user edit.

public sealed class AddressValidationResponse : IResponseFor<AddressValidationRequest>
Inheritance
AddressValidationResponse
Implements
Inherited Members

Properties

ResponseId

Identifier of this validation response. Pass this as PreviousResponseId on the next validation call for the same address to group the calls into a single validation session.

[JsonPropertyName("responseId")]
public string? ResponseId { get; set; }

Property Value

string

Result

The validation result.

[JsonPropertyName("result")]
public ValidationResult? Result { get; set; }

Property Value

ValidationResult