| 1 | <?php |
||
| 11 | final class RequestData extends AbstractRequestData |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * The article number. |
||
| 15 | * |
||
| 16 | * @var string |
||
| 17 | * |
||
| 18 | * @JMS\Type("string") |
||
| 19 | * @JMS\SerializedName("ARTICLE_NUMBER") |
||
| 20 | */ |
||
| 21 | protected $articleNumber; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Get the article number. |
||
| 25 | * |
||
| 26 | * @return integer |
||
| 27 | */ |
||
| 28 | public function getArticleNumber() |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Set the article number. |
||
| 35 | * |
||
| 36 | * @param string $articleNumber The article number. |
||
| 37 | * @return $this |
||
| 38 | */ |
||
| 39 | 15 | public function setArticleNumber($articleNumber) |
|
| 45 | } |
||
| 46 |