| 1 | <?php |
||
| 11 | class Response extends AbstractResponse |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * The addons URL. |
||
| 15 | * |
||
| 16 | * @var string |
||
| 17 | * |
||
| 18 | * @JMS\Type("string") |
||
| 19 | * @JMS\SerializedName("ADDONS_URL") |
||
| 20 | */ |
||
| 21 | protected $addonsUrl; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * The cancel URL. |
||
| 25 | * |
||
| 26 | * @var string |
||
| 27 | * |
||
| 28 | * @JMS\Type("string") |
||
| 29 | * @JMS\SerializedName("CANCEL_URL") |
||
| 30 | */ |
||
| 31 | protected $cancelUrl; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * The reactivate URL. |
||
| 35 | * |
||
| 36 | * @var string |
||
| 37 | * |
||
| 38 | * @JMS\Type("string") |
||
| 39 | * @JMS\SerializedName("REACTIVATE_URL") |
||
| 40 | */ |
||
| 41 | protected $reactivateUrl; |
||
| 42 | |||
| 43 | /** |
||
| 44 | * Get the addons URL. |
||
| 45 | * |
||
| 46 | * @return string |
||
| 47 | */ |
||
| 48 | public function getAddonsUrl() |
||
| 52 | |||
| 53 | /** |
||
| 54 | * Set the addons URL. |
||
| 55 | * |
||
| 56 | * @param string $addonsUrl The URL. |
||
| 57 | * @return Response |
||
| 58 | */ |
||
| 59 | 3 | public function setAddonsUrl($addonsUrl) |
|
| 65 | |||
| 66 | /** |
||
| 67 | * Get the cancel URL. |
||
| 68 | * |
||
| 69 | * @return string |
||
| 70 | */ |
||
| 71 | public function getCancelUrl() |
||
| 75 | |||
| 76 | /** |
||
| 77 | * Set the cancel URL. |
||
| 78 | * |
||
| 79 | * @param string $cancelUrl The URL. |
||
| 80 | * @return Response |
||
| 81 | */ |
||
| 82 | 3 | public function setCancelUrl($cancelUrl) |
|
| 88 | |||
| 89 | /** |
||
| 90 | * Get the reactivate URL. |
||
| 91 | * |
||
| 92 | * @return string |
||
| 93 | */ |
||
| 94 | public function getReactivateUrl() |
||
| 98 | |||
| 99 | /** |
||
| 100 | * Set the reactivate URL. |
||
| 101 | * |
||
| 102 | * @param string $reactivateUrl The URL. |
||
| 103 | * @return Response |
||
| 104 | */ |
||
| 105 | 3 | public function setReactivateUrl($reactivateUrl) |
|
| 111 | } |
||
| 112 |