/home/techb158/ileadtechnology.com/SSM/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api
Edit: /home/techb158/ileadtechnology.com/SSM/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Cost.php (1417B)
percent = $percent;
return $this;
}
/**
* Cost in percent. Range of 0 to 100.
*
* @return string
*/
public function getPercent()
{
return $this->percent;
}
/**
* The cost, as an amount. Valid range is from 0 to 1,000,000.
*
* @param \PayPal\Api\Currency $amount
*
* @return $this
*/
public function setAmount($amount)
{
$this->amount = $amount;
return $this;
}
/**
* The cost, as an amount. Valid range is from 0 to 1,000,000.
*
* @return \PayPal\Api\Currency
*/
public function getAmount()
{
return $this->amount;
}
}