Added \TgBotLib\Objects > Venue
This commit is contained in:
parent
78447603e4
commit
32c5618530
1 changed files with 154 additions and 0 deletions
154
src/TgBotLib/Objects/Venue.php
Normal file
154
src/TgBotLib/Objects/Venue.php
Normal file
|
@ -0,0 +1,154 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace TgBotLib\Objects;
|
||||||
|
|
||||||
|
use TgBotLib\Interfaces\ObjectTypeInterface;
|
||||||
|
|
||||||
|
class Venue implements ObjectTypeInterface
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var Location
|
||||||
|
*/
|
||||||
|
private $location;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
private $title;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
private $address;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string|null
|
||||||
|
*/
|
||||||
|
private $foursquare_id;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string|null
|
||||||
|
*/
|
||||||
|
private $foursquare_type;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string|null
|
||||||
|
*/
|
||||||
|
private $google_place_id;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string|null
|
||||||
|
*/
|
||||||
|
private $google_place_type;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Venue location. Can't be a live location
|
||||||
|
*
|
||||||
|
* @return Location
|
||||||
|
*/
|
||||||
|
public function getLocation(): Location
|
||||||
|
{
|
||||||
|
return $this->location;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Name of the venue
|
||||||
|
*
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function getTitle(): string
|
||||||
|
{
|
||||||
|
return $this->title;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Address of the venue
|
||||||
|
*
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function getAddress(): string
|
||||||
|
{
|
||||||
|
return $this->address;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Optional. Foursquare identifier of the venue
|
||||||
|
*
|
||||||
|
* @return string|null
|
||||||
|
*/
|
||||||
|
public function getFoursquareId(): ?string
|
||||||
|
{
|
||||||
|
return $this->foursquare_id;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Optional. Foursquare type of the venue.
|
||||||
|
* (For example, “arts_entertainment/default”, “arts_entertainment/aquarium” or “food/icecream”.)
|
||||||
|
*
|
||||||
|
* @return string|null
|
||||||
|
*/
|
||||||
|
public function getFoursquareType(): ?string
|
||||||
|
{
|
||||||
|
return $this->foursquare_type;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Optional. Google Places identifier of the venue
|
||||||
|
*
|
||||||
|
* @return string|null
|
||||||
|
*/
|
||||||
|
public function getGooglePlaceId(): ?string
|
||||||
|
{
|
||||||
|
return $this->google_place_id;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Optional. Google Places type of the venue. (See supported types.)
|
||||||
|
*
|
||||||
|
* @see https://developers.google.com/places/web-service/supported_types
|
||||||
|
* @return string|null
|
||||||
|
*/
|
||||||
|
public function getGooglePlaceType(): ?string
|
||||||
|
{
|
||||||
|
return $this->google_place_type;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns an array representation of the object
|
||||||
|
*
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
public function toArray(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
'location' => ($this->location instanceof Location) ? $this->location->toArray() : $this->location,
|
||||||
|
'title' => $this->title,
|
||||||
|
'address' => $this->address,
|
||||||
|
'foursquare_id' => $this->foursquare_id,
|
||||||
|
'foursquare_type' => $this->foursquare_type,
|
||||||
|
'google_place_id' => $this->google_place_id,
|
||||||
|
'google_place_type' => $this->google_place_type,
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs object from an array representation
|
||||||
|
*
|
||||||
|
* @param array $data
|
||||||
|
* @return ObjectTypeInterface
|
||||||
|
*/
|
||||||
|
public static function fromArray(array $data): ObjectTypeInterface
|
||||||
|
{
|
||||||
|
$object = new self();
|
||||||
|
|
||||||
|
$object->location = isset($data['location']) ? Location::fromArray($data['location']) : null;
|
||||||
|
$object->title = @$data['title'];
|
||||||
|
$object->address = @$data['address'];
|
||||||
|
$object->foursquare_id = @$data['foursquare_id'] ?? null;
|
||||||
|
$object->foursquare_type = @$data['foursquare_type'] ?? null;
|
||||||
|
$object->google_place_id = @$data['google_place_id'] ?? null;
|
||||||
|
$object->google_place_type = @$data['google_place_type'] ?? null;
|
||||||
|
|
||||||
|
return $object;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue