| 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 | * @var string |
||
| 25 | * |
||
| 26 | * @JMS\Type("string") |
||
| 27 | * @JMS\SerializedName("MONTH") |
||
| 28 | */ |
||
| 29 | protected $month; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Constructor. |
||
| 33 | * |
||
| 34 | * @param integer $subscriptionId The subscription ID. |
||
| 35 | * @param integer $month The month to postpone. |
||
| 36 | */ |
||
| 37 | 3 | public function __construct($subscriptionId, $month) |
|
| 42 | |||
| 43 | /** |
||
| 44 | * Get the subscription ID. |
||
| 45 | * |
||
| 46 | * @return integer |
||
| 47 | */ |
||
| 48 | public function getSubscriptionId() |
||
| 52 | |||
| 53 | /** |
||
| 54 | * Set the subscription ID. |
||
| 55 | * |
||
| 56 | * @param integer $subscriptionId The subscription ID. |
||
| 57 | */ |
||
| 58 | 3 | public function setSubscriptionId($subscriptionId) |
|
| 62 | |||
| 63 | /** |
||
| 64 | * Get the month. |
||
| 65 | * |
||
| 66 | * @return integer |
||
| 67 | */ |
||
| 68 | public function getMonth() |
||
| 72 | |||
| 73 | /** |
||
| 74 | * Set the month. |
||
| 75 | * |
||
| 76 | * @param integer $month The month for postponing. |
||
| 77 | * @return RequestData |
||
| 78 | */ |
||
| 79 | 3 | public function setMonth($month) |
|
| 85 | } |
||
| 86 |