Class UspsAddress
- Namespace
- GoogleMapsApi.Entities.AddressValidation.Response
- Assembly
- GoogleMapsApi.dll
USPS-standardized address form.
public sealed class UspsAddress
- Inheritance
-
UspsAddress
- Inherited Members
Properties
City
City.
[JsonPropertyName("city")]
public string? City { get; set; }
Property Value
CityStateZipAddressLine
Combined city/state/ZIP line.
[JsonPropertyName("cityStateZipAddressLine")]
public string? CityStateZipAddressLine { get; set; }
Property Value
Firm
Firm/organization line.
[JsonPropertyName("firm")]
public string? Firm { get; set; }
Property Value
FirstAddressLine
First address line (street).
[JsonPropertyName("firstAddressLine")]
public string? FirstAddressLine { get; set; }
Property Value
SecondAddressLine
Second address line (apartment, suite).
[JsonPropertyName("secondAddressLine")]
public string? SecondAddressLine { get; set; }
Property Value
State
State (USPS two-letter abbreviation).
[JsonPropertyName("state")]
public string? State { get; set; }
Property Value
Urbanization
Puerto Rico urbanization name.
[JsonPropertyName("urbanization")]
public string? Urbanization { get; set; }
Property Value
ZipCode
5-digit ZIP code.
[JsonPropertyName("zipCode")]
public string? ZipCode { get; set; }
Property Value
ZipCodeExtension
ZIP+4 extension.
[JsonPropertyName("zipCodeExtension")]
public string? ZipCodeExtension { get; set; }