1 | <?php |
||
11 | class Response extends AbstractResponse |
||
12 | { |
||
13 | /** |
||
14 | * URL leading to Dashboard. |
||
15 | * |
||
16 | * @var string |
||
17 | * |
||
18 | * @JMS\Type("string") |
||
19 | * @JMS\SerializedName("DASHBOARD_URL") |
||
20 | */ |
||
21 | protected $dashboardUrl; |
||
22 | |||
23 | /** |
||
24 | * URL to the Account-Data. |
||
25 | * |
||
26 | * @var string |
||
27 | * |
||
28 | * @JMS\Type("string") |
||
29 | * @JMS\SerializedName("ACCOUNTDATA_URL") |
||
30 | */ |
||
31 | protected $accountDataUrl; |
||
32 | |||
33 | /** |
||
34 | * @return string |
||
35 | */ |
||
36 | public function getDashboardUrl() |
||
40 | |||
41 | /** |
||
42 | * Set the dashboard URL. |
||
43 | * |
||
44 | * @param string $dashboardUrl The URL |
||
45 | * @return Response |
||
46 | */ |
||
47 | 3 | public function setDashboardUrl($dashboardUrl) |
|
53 | |||
54 | /** |
||
55 | * Get the account data URL. |
||
56 | * |
||
57 | * @return string |
||
58 | */ |
||
59 | public function getAccountDataUrl() |
||
63 | |||
64 | /** |
||
65 | * Set the account data URL. |
||
66 | * |
||
67 | * @param string $accountDataUrl The URL |
||
68 | * @return Response |
||
69 | */ |
||
70 | 3 | public function setAccountDataUrl($accountDataUrl) |
|
76 | } |
||
77 |