/home/techb158/ileadtechnology.com/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api
Edit: /home/techb158/ileadtechnology.com/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/ShippingCost.php (1179B)
amount = $amount;
return $this;
}
/**
* The shipping cost, as an amount. Valid range is from 0 to 999999.99.
*
* @return \PayPal\Api\Currency
*/
public function getAmount()
{
return $this->amount;
}
/**
* The tax percentage on the shipping amount.
*
* @param \PayPal\Api\Tax $tax
*
* @return $this
*/
public function setTax($tax)
{
$this->tax = $tax;
return $this;
}
/**
* The tax percentage on the shipping amount.
*
* @return \PayPal\Api\Tax
*/
public function getTax()
{
return $this->tax;
}
}