interface LocationAddress {
    addressLine: string;
    city: string;
    countryCode: string;
    latitude: number;
    longitude: number;
    postCode: string;
    state: string;
}

Properties

addressLine: string
city: string
countryCode: string
latitude: number
longitude: number
postCode: string
state: string