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

Hierarchy (View Summary)

Properties

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