| 1 | <?php |
||
| 9 | class MobileHashStatusResult implements ResultInterface |
||
| 10 | { |
||
| 11 | /** @var string response status */ |
||
| 12 | private $status; |
||
| 13 | |||
| 14 | /** @var string signature value */ |
||
| 15 | private $signatureValue = null; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Fields expected in response |
||
| 19 | * @return array |
||
| 20 | */ |
||
| 21 | 2 | public function getFields() |
|
| 28 | |||
| 29 | /** |
||
| 30 | * Set status |
||
| 31 | * @param string $status |
||
| 32 | * @return void |
||
| 33 | */ |
||
| 34 | 1 | public function setStatus($status) |
|
| 38 | |||
| 39 | /** |
||
| 40 | * Get status |
||
| 41 | * @return string |
||
| 42 | */ |
||
| 43 | 1 | public function getStatus() |
|
| 47 | |||
| 48 | /** |
||
| 49 | * Gets the value of signatureValue. |
||
| 50 | * @return string|null |
||
| 51 | */ |
||
| 52 | 1 | public function getSignatureValue() |
|
| 56 | |||
| 57 | /** |
||
| 58 | * Sets the value of signatureValue. |
||
| 59 | * @param string|null $signatureValue the signature value |
||
| 60 | */ |
||
| 61 | 1 | public function setSignatureValue($signatureValue) |
|
| 65 | } |
||
| 66 |