for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Thepixeldeveloper\Mondo\Response;
/**
* Class Balance
*
* @package Thepixeldeveloper\Mondo\Response
*/
class Balance
{
* Balance.
* @var integer
protected $balance;
* Currency.
* @var string
protected $currency;
* Spend today.
protected $spendToday;
* @return int
public function getBalance()
return $this->balance;
}
* @return string
public function getCurrency()
return $this->currency;
public function getSpendToday()
return $this->spendToday;