1 | <?php |
||
11 | class Response extends AbstractResponse |
||
12 | { |
||
13 | /** |
||
14 | * The subscription id. |
||
15 | * |
||
16 | * @var integer |
||
17 | * |
||
18 | * @JMS\Type("integer") |
||
19 | * @JMS\SerializedName("SUBSCRIPTION_ID") |
||
20 | */ |
||
21 | protected $subscriptionId; |
||
22 | |||
23 | /** |
||
24 | * Get the subscription ID. |
||
25 | * |
||
26 | * @return integer |
||
27 | */ |
||
28 | public function getSubscriptionId() |
||
32 | |||
33 | /** |
||
34 | * Set the subscription ID. |
||
35 | * |
||
36 | * @param integer $subscriptionId The subscription ID. |
||
37 | * @return Response |
||
38 | */ |
||
39 | 3 | public function setSubscriptionId($subscriptionId) |
|
45 | } |
||
46 |