1 | <?php |
||
11 | final class RequestData extends AbstractRequestData |
||
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 | * Constructor. |
||
25 | * |
||
26 | * @param integer $subscriptionId The subscription ID. |
||
27 | */ |
||
28 | 3 | public function __construct($subscriptionId) |
|
32 | |||
33 | /** |
||
34 | * Get the subscription ID. |
||
35 | * |
||
36 | * @return integer |
||
37 | */ |
||
38 | public function getSubscriptionId() |
||
42 | |||
43 | /** |
||
44 | * Set the subscription ID. |
||
45 | * |
||
46 | * @param integer $subscriptionId The subscription ID. |
||
47 | */ |
||
48 | 3 | public function setSubscriptionId($subscriptionId) |
|
52 | } |
||
53 |