Constructor: mediaAreaVenue
Represents a location tag attached to a story, with additional venue information.
Attributes:
| Name | Type | Required | Description |
|---|---|---|---|
| coordinates | MediaAreaCoordinates | Yes | The size and location of the media area corresponding to the location sticker on top of the story media. |
| geo | GeoPoint | Optional | Coordinates of the venue |
| title | string | Yes | Venue name |
| address | string | Yes | Address |
| provider | string | Yes | Venue provider: currently only “foursquare” needs to be supported. |
| venue_id | string | Yes | Venue ID in the provider’s database |
| venue_type | string | Yes | Venue type in the provider’s database |
Type: MediaArea
Example:
$mediaAreaVenue = ['_' => 'mediaAreaVenue', 'coordinates' => MediaAreaCoordinates, 'geo' => GeoPoint, 'title' => 'string', 'address' => 'string', 'provider' => 'string', 'venue_id' => 'string', 'venue_type' => 'string'];