File manager - Edit - /home/autoph/public_html/tasks/vendor/bogdaan/viber-bot-php/src/Api/User/State.php
Back
<?php namespace Viber\Api\User; use Viber\Api\Entity; /** * Represent user state: online, offline, unsubscribed, hidden * * @author Novikov Bogdan <hcbogdan@gmail.com> */ class State extends Entity { /** * Available status * * @var integer */ const ONLINE = 0; const OFFLINE = 1; const UNDISCLOSED = 2; const ERROR = 3; const UNAVAILABLE = 4; /** * Viber user id * @var integer */ protected $id; /** * User status * @var integer */ protected $status; /** * Status description * @var string */ protected $message; /** * {@inheritDoc} */ protected $propertiesMap = [ 'id' => 'setId', 'online_status' => 'setStatus', 'online_status_message' => 'setMessage', ]; /** * {@inheritDoc} */ public function toArray() { return [ 'id' => $this->getId(), 'online_status' => $this->getStatus(), 'online_status_message' => $this->getMessage(), ]; } /** * Get the value of Viber user id * * @return integer */ public function getId() { return $this->id; } /** * Set the value of Viber user id * * @param integer id * * @return self */ public function setId($id) { $this->id = $id; return $this; } /** * Get the value of Status code * * @return integer */ public function getStatus() { return $this->status; } /** * Set the value of Status code * * @param integer status * * @return self */ public function setStatus($status) { $this->status = $status; return $this; } /** * Get the value of Status description * * @return string */ public function getMessage() { return $this->message; } /** * Set the value of Status description * * @param string message * * @return self */ public function setMessage($message) { $this->message = $message; return $this; } /** * Is user online? * * @return boolean */ public function isOnline() { return $this->status == self::ONLINE; } }
| ver. 1.4 |
.
| PHP 7.3.33 | Generation time: 0 |
proxy
|
phpinfo
|
Settings