for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Speicher210\Fastbill\Api\Service\Article\Get;
use JMS\Serializer\Annotation as JMS;
use Speicher210\Fastbill\Api\AbstractRequestData;
/**
* The request data for getting the articles.
*/
final class RequestData extends AbstractRequestData
{
* The article number.
*
* @var string
* @JMS\Type("string")
* @JMS\SerializedName("ARTICLE_NUMBER")
protected $articleNumber;
* Get the article number.
* @return integer
public function getArticleNumber()
return $this->articleNumber;
}
* Set the article number.
* @param string $articleNumber The article number.
* @return $this
public function setArticleNumber($articleNumber)
$this->articleNumber = $articleNumber;
return $this;