| 1 | <?php |
||
| 7 | class GetBalanceResponse extends Model |
||
| 8 | { |
||
| 9 | protected $balance = null; |
||
| 10 | |||
| 11 | protected $mappingClasses = [ |
||
| 12 | 'balance' => 'Yandex\Market\Partner\Models\Balance' |
||
| 13 | ]; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @return null |
||
| 17 | */ |
||
| 18 | public function getBalance() |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @param null $balance |
||
| 25 | */ |
||
| 26 | public function setBalance($balance) |
||
| 30 | } |
||
| 31 | |||
| 32 |