| 1 | <?php |
||
| 12 | class CallbackErrorInfo |
||
| 13 | { |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @var string |
||
| 17 | * @Serializer\Type("string") |
||
| 18 | */ |
||
| 19 | protected $errorCode; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var string |
||
| 23 | * @Serializer\Type("string") |
||
| 24 | */ |
||
| 25 | protected $errorGroup; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var string |
||
| 29 | * @Serializer\Type("string") |
||
| 30 | */ |
||
| 31 | protected $errorMessage; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @return string |
||
| 35 | */ |
||
| 36 | public function getErrorCode() |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @return string |
||
| 43 | */ |
||
| 44 | public function getErrorGroup() |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @return string |
||
| 51 | */ |
||
| 52 | public function getErrorMessage() |
||
| 56 | } |
||
| 57 |