for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by PhpStorm.
* User: Administrador
* Date: 03/10/2017
* Time: 12:55 PM
*/
namespace Greenter\Model\Response;
* Class StatusCdrResult
* @package Greenter\Model\Response
class StatusCdrResult extends BillResult
{
* @var string
private $code;
private $message;
* @return string
public function getCode()
return $this->code;
}
* @param string $code
* @return StatusCdrResult
public function setCode($code)
$this->code = $code;
return $this;
public function getMessage()
return $this->message;
* @param string $message
public function setMessage($message)
$this->message = $message;