for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Speicher210\Fastbill\Api\Service\Customer\Update;
use JMS\Serializer\Annotation as JMS;
use Speicher210\Fastbill\Api\AbstractResponse;
/**
* Response when getting the customers.
*/
class Response extends AbstractResponse
{
* The customers ID.
*
* @var integer
* @JMS\Type("integer")
* @JMS\SerializedName("CUSTOMER_ID")
protected $customerId;
* Get the customers ID.
* @return integer
public function getCustomerId()
return $this->customerId;
}
* @param integer $customerId
public function setCustomerId($customerId)
$this->customerId = $customerId;