interface BaseAddress {
    city: null | City;
    country: null | Country;
    isEmpty: boolean;
    state: null | State;
    street: null | Street;
}

Hierarchy (View Summary)

Properties

city: null | City
country: null | Country
isEmpty: boolean
state: null | State
street: null | Street