File manager - Edit - /home/autoph/public_html/tasks/vendor/bogdaan/viber-bot-php/src/Api/Message.php
Back
<?php namespace Viber\Api; /** * General message object * * @author Novikov Bogdan <hcbogdan@gmail.com> */ class Message extends Entity { /** * Viber user id array * * @var array */ protected $broadcast_list; /** * Viber user id * * @var integer */ protected $receiver; /** * Message type * * @var string */ protected $type; /** * Sender information * * @var \Viber\Api\Sender */ protected $sender; /** * Track messages and user’s replies. Passed back with user’s reply * * @var string */ protected $tracking_data; /** * API version required by clients * * @var integer */ protected $min_api_version = 1; /** * Custom keyboard for message * * @var \Viber\Api\Keyboard */ protected $keyboard; /** * {@inheritDoc} */ public function toArray() { return [ 'receiver' => $this->getReceiver(), 'type' => $this->getType(), 'sender' => $this->getSender(), 'tracking_data' => $this->getTrackingData(), 'min_api_version' => $this->getMinApiVersion(), 'keyboard' => $this->getKeyboard(), 'broadcast_list' => $this->getBroadcastList() ]; } /** * Get the value of Viber user's IDs * * @return array */ public function getBroadcastList() { return $this->broadcast_list; } /** * Set the value of Viber user's IDs * * @param array IDs * * @return static */ public function setBroadcastList($broadcast_list) { $this->broadcast_list = $broadcast_list; return $this; } /** * Get the value of Viber user * * @return string */ public function getReceiver() { return $this->receiver; } /** * Set the value of Viber user * * @param string receiver * * @return static */ public function setReceiver($receiver) { $this->receiver = $receiver; return $this; } /** * Get the value of Message type * * @return string */ public function getType() { return $this->type; } /** * Get the value of Sender information * * @return \Viber\Api\Sender */ public function getSender() { return $this->sender; } /** * Set the value of Sender information * * @param \Viber\Api\Sender sender * * @return static */ public function setSender(\Viber\Api\Sender $sender) { $this->sender = $sender; return $this; } /** * Get the value of Track messages and user’s replies. Passed back with user’s reply * * @return string */ public function getTrackingData() { return $this->tracking_data; } /** * Set the value of Track messages and user’s replies. Passed back with user’s reply * * @param string tracking_data * * @return static */ public function setTrackingData($tracking_data) { $this->tracking_data = $tracking_data; return $this; } /** * Get the value of API version required by clients * * @return integer */ public function getMinApiVersion() { return $this->min_api_version; } /** * Set the value of API version required by clients * * @param integer min_api_version * * @return static */ public function setMinApiVersion($min_api_version) { $this->min_api_version = $min_api_version; return $this; } /** * Get the value of Custom keyboard for message * * @return \Viber\Api\Keyboard */ public function getKeyboard() { return $this->keyboard; } /** * Set the value of Custom keyboard for message * * @param \Viber\Api\Keyboard keyboard * * @return static */ public function setKeyboard(\Viber\Api\Keyboard $keyboard) { $this->keyboard = $keyboard; return $this; } }
| ver. 1.4 |
.
| PHP 7.3.33 | Generation time: 0 |
proxy
|
phpinfo
|
Settings