for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author Fabian Hanisch
* @since: 2017-08-27
* @version 1.0.0
*/
namespace HanischIt\KrakenApi\Calls\Shared\Model;
* Class LedgerInfoModel
* @package HanischIt\KrakenApi\Calls\Shared\Model
class LedgerInfoModel
{
* @var string
private $ledgerId;
private $refid;
private $time;
private $type;
private $aclass;
private $asset;
* @var float
private $amount;
private $fee;
private $balance;
* LedgerInfoModel constructor.
* @param string $ledgerId
* @param string $refid
* @param string $time
* @param string $type
* @param string $aclass
* @param string $asset
* @param float $amount
* @param float $fee
* @param float $balance
public function __construct($ledgerId, $refid, $time, $type, $aclass, $asset, $amount, $fee, $balance)
$this->ledgerId = $ledgerId;
$this->refid = $refid;
$this->time = $time;
$this->type = $type;
$this->aclass = $aclass;
$this->asset = $asset;
$this->amount = $amount;
$this->fee = $fee;
$this->balance = $balance;
}
* @return string
public function getLedgerId()
return $this->ledgerId;
public function getRefid()
return $this->refid;
public function getTime()
return $this->time;
public function getType()
return $this->type;
public function getAclass()
return $this->aclass;
public function getAsset()
return $this->asset;
* @return float
public function getAmount()
return $this->amount;
public function getFee()
return $this->fee;
public function getBalance()
return $this->balance;