for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace HanischIt\KrakenApi\Call\OHLCData\Model;
/**
* Class OHLCDataModel
* @package HanischIt\KrakenApi\Call\OHLCData\Model
*/
class OHLCDataModel
{
* @var int
private $time;
* @var float
private $open;
private $high;
private $low;
private $close;
private $vwap;
private $volume;
private $count;
* OHLCDataModel constructor.
* @param int $time
* @param float $open
* @param float $high
* @param float $low
* @param float $close
* @param float $vwap
* @param float $volume
* @param int $count
public function __construct($time, $open, $high, $low, $close, $vwap, $volume, $count)
$this->time = $time;
$this->open = $open;
$this->high = $high;
$this->low = $low;
$this->close = $close;
$this->vwap = $vwap;
$this->volume = $volume;
$this->count = $count;
}
* @return int
public function getTime()
return $this->time;
* @return float
public function getOpen()
return $this->open;
public function getHigh()
return $this->high;
public function getLow()
return $this->low;
public function getClose()
return $this->close;
public function getVwap()
return $this->vwap;
public function getVolume()
return $this->volume;
public function getCount()
return $this->count;