| 1 | <?php |
||
| 5 | class UserBalanceMessage extends Message |
||
| 6 | { |
||
| 7 | const PAYMENT = 'payment'; |
||
| 8 | const IN_GAME_PURCHASE = 'inGamePurchase'; |
||
| 9 | const COUPON = 'coupon'; |
||
| 10 | const INTERNAL = 'internal'; |
||
| 11 | const CANCELLATION = 'cancellation'; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @return array |
||
| 15 | */ |
||
| 16 | public function getVirtualCurrencyBalance() |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @return string |
||
| 27 | */ |
||
| 28 | public function getOperationType() |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @return int |
||
| 35 | */ |
||
| 36 | public function getOperationId() |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @return array |
||
| 43 | */ |
||
| 44 | public function getCoupon() |
||
| 52 | |||
| 53 | /** |
||
| 54 | * @return string|null |
||
| 55 | */ |
||
| 56 | public function getItemsOperationType() |
||
| 62 | } |
||
| 63 |