1 | <?php |
||
11 | class Response extends AbstractResponse |
||
12 | { |
||
13 | /** |
||
14 | * The customers ID. |
||
15 | * |
||
16 | * @var integer |
||
17 | * |
||
18 | * @JMS\Type("integer") |
||
19 | * @JMS\SerializedName("CUSTOMER_ID") |
||
20 | */ |
||
21 | protected $customerId; |
||
22 | |||
23 | /** |
||
24 | * Get the customers ID. |
||
25 | * |
||
26 | * @return integer |
||
27 | */ |
||
28 | public function getCustomerId() |
||
32 | |||
33 | /** |
||
34 | * @param integer $customerId |
||
35 | */ |
||
36 | 3 | public function setCustomerId($customerId) |
|
40 | } |
||
41 |