Interface PostalAddress

Represents a postal address, providing detailed information about a specific location.

interface PostalAddress {
    city?: string;
    country?: string;
    country_code?: string;
    postal_code?: string;
    region?: string;
    street_address?: string;
}

Properties

city?: string

The locality (city or town).

"Tech City"
country?: string

The country.

"USA"
country_code?: string

The country.

"USA"
postal_code?: string

The postal code.

"12345"
region?: string

The region (state or province).

"TX"
street_address?: string

The street address.

"123 Main St"