Interface LocationAddress

Describes an address of a location.

interface LocationAddress {
    @type: "locationAddress";
    city: string;
    country_code: string;
    state: string;
    street: string;
}

Properties

@type: "locationAddress"
city: string

City; empty if unknown.

country_code: string

A two-letter ISO 3166-1 alpha-2 country code.

state: string

State, if applicable; empty if unknown.

street: string

The address; empty if unknown.