interface UserAddress {
    country?: string;
    formatted?: string;
    locality?: string;
    postal_code?: string;
    region?: string;
    street_address?: string;
}

Properties

country?: string

Country part of user address

formatted?: string

Address in custom format

locality?: string

City part of user address

postal_code?: string

Postcode part of user address

region?: string

State part of user address

street_address?: string

Street name and house number part of user address