for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Wonnova\SDK\Model;
use JMS\Serializer\Annotation as JMS;
/**
* Class Notification
* @author Wonnova
* @link http://www.wonnova.com
*/
class Notification extends AbstractModel
{
* @var string
* @JMS\Type("string")
private $type;
private $message;
* @return string
public function getType()
return $this->type;
}
* @param string $type
* @return $this
public function setType($type)
$this->type = $type;
return $this;
public function getMessage()
return $this->message;
* @param string $message
public function setMessage($message)
$this->message = $message;