Interface BusinessLocation

Represents a location of a business.

interface BusinessLocation {
    @type: "businessLocation";
    address: string;
    location: Location;
}

Properties

@type: "businessLocation"
address: string

Location address; 1-96 characters.

location: Location

The location; may be null if not specified.