for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace floor12\DalliApi\Models;
class Below extends BaseXmlObject
{
/** @var float */
public $_above_price;
public $_return_price;
/** @var int */
public $_below;
public $_below_sum;
public $_price;
/**
* @param float $above_price
* @return Below
*/
public function setAbovePrice(float $above_price): self
$this->_above_price = $above_price;
return $this;
}
* @param float $return_price
public function setReturnPrice(float $return_price): self
$this->_return_price = $return_price;
* @param int $below
public function setBelow(int $below): self
$this->_below = $below;
* @param float $below_sum
public function setBelowSum(float $below_sum): self
$this->_below_sum = $below_sum;
* @param float $price
public function setPrice(float $price): self
$this->_price = $price;