class Venue

This object represents a venue.

Methods

__construct(Location $location, string $title, string $address, string|null $foursquare_id = null, string|null $foursquare_type = null, string|null $google_place_id = null, string|null $google_place_type = null)

No description

getLocation()

Venue location. Can't be a live location.

string
getTitle()

Name of the venue.

string
getAddress()

Address of the venue.

string|null
getFoursquareId()

Optional. Foursquare identifier of the venue.

string|null
getFoursquareType()

Optional. Foursquare type of the venue. (For example, “arts_entertainment/default”, “arts_entertainment/aquarium” or “food/icecream”.).

string|null
getGooglePlaceId()

Optional. Google Places identifier of the venue.

string|null
getGooglePlaceType()

Optional. Google Places type of the venue. (See supported types.).

Details

at line 19
__construct(Location $location, string $title, string $address, string|null $foursquare_id = null, string|null $foursquare_type = null, string|null $google_place_id = null, string|null $google_place_type = null)

No description

Parameters

Location $location
string $title
string $address
string|null $foursquare_id
string|null $foursquare_type
string|null $google_place_id
string|null $google_place_type

at line 33
Location getLocation()

Venue location. Can't be a live location.

Return Value

Location

at line 41
string getTitle()

Name of the venue.

Return Value

string

at line 49
string getAddress()

Address of the venue.

Return Value

string

at line 57
string|null getFoursquareId()

Optional. Foursquare identifier of the venue.

Return Value

string|null

at line 65
string|null getFoursquareType()

Optional. Foursquare type of the venue. (For example, “arts_entertainment/default”, “arts_entertainment/aquarium” or “food/icecream”.).

Return Value

string|null

at line 73
string|null getGooglePlaceId()

Optional. Google Places identifier of the venue.

Return Value

string|null

at line 81
string|null getGooglePlaceType()

Optional. Google Places type of the venue. (See supported types.).

Return Value

string|null