for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author fabian.hanisch
* @since 2017-07-19
*/
namespace HanischIt\KrakenApi\Model\OpenOrders;
class OpenOrderOrderTypeModel
{
* @var string
private $leverage;
private $order;
private $ordertype;
private $pair;
* @var float
private $price;
private $price2;
private $type;
* OpenOrderOrderTypeModel constructor.
*
* @param string $leverage
* @param string $order
* @param string $ordertype
* @param string $pair
* @param float $price
* @param float $price2
* @param string $type
public function __construct($leverage, $order, $ordertype, $pair, $price, $price2, $type)
$this->leverage = $leverage;
$this->order = $order;
$this->ordertype = $ordertype;
$this->pair = $pair;
$this->price = $price;
$this->price2 = $price2;
$this->type = $type;
}
* @return string
public function getLeverage()
return $this->leverage;
public function getOrder()
return $this->order;
public function getOrdertype()
return $this->ordertype;
public function getPair()
return $this->pair;
* @return float
public function getPrice()
return $this->price;
public function getPrice2()
return $this->price2;
public function getType()
return $this->type;