Table of Contents

Class AddressMetadata

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

Higher-level metadata flags describing the type of address (business, PO box, residence). Each flag is nullable — null means Google has no information either way.

public sealed class AddressMetadata
Inheritance
AddressMetadata
Inherited Members

Properties

Business

True if Google identifies the address as a business location.

[JsonPropertyName("business")]
public bool? Business { get; set; }

Property Value

bool?

PoBox

True if Google identifies the address as a PO box or virtual mailbox.

[JsonPropertyName("poBox")]
public bool? PoBox { get; set; }

Property Value

bool?

Residential

True if Google identifies the address as a residence.

[JsonPropertyName("residential")]
public bool? Residential { get; set; }

Property Value

bool?