shipping = $shipping; return $this; } /** * Amount being charged for shipping. * * @return string */ public function getShipping() { return $this->shipping; } /** * Sub-total (amount) of items being paid for. * * * @param string|double $subtotal * * @return $this */ public function setSubtotal($subtotal) { NumericValidator::validate($subtotal, "SubTotal"); $subtotal = FormatConverter::formatToTwoDecimalPlaces($subtotal); $this->subtotal = $subtotal; return $this; } /** * Sub-total (amount) of items being paid for. * * @return string */ public function getSubtotal() { return $this->subtotal; } /** * Amount being charged as tax. * * * @param string|double $tax * * @return $this */ public function setTax($tax) { NumericValidator::validate($tax, "Tax"); $tax = FormatConverter::formatToTwoDecimalPlaces($tax); $this->tax = $tax; return $this; } /** * Amount being charged as tax. * * @return string */ public function getTax() { return $this->tax; } /** * Fee charged by PayPal. In case of a refund, this is the fee amount refunded to the original receipient of the payment. * * * @param string|double $fee * * @return $this */ public function setFee($fee) { NumericValidator::validate($fee, "Fee"); $fee = FormatConverter::formatToTwoDecimalPlaces($fee); $this->fee = $fee; return $this; } /** * Fee charged by PayPal. In case of a refund, this is the fee amount refunded to the original receipient of the payment. * * @return string */ public function getFee() { return $this->fee; } /** * Amount being charged as shipping discount. * * * @param string|double $shipping_discount * * @return $this */ public function setShippingDiscount($shipping_discount) { NumericValidator::validate($shipping_discount, "Shipping Discount"); $shipping_discount = FormatConverter::formatToTwoDecimalPlaces($shipping_discount); $this->shipping_discount = $shipping_discount; return $this; } /** * Amount being charged as shipping discount. * * @return string */ public function getShippingDiscount() { return $this->shipping_discount; } /** * Amount being charged as shipping discount. * * @deprecated Instead use setShippingDiscount * * @param string $shipping_discount * @return $this */ public function setShipping_discount($shipping_discount) { $this->shipping_discount = $shipping_discount; return $this; } /** * Amount being charged as shipping discount. * @deprecated Instead use getShippingDiscount * * @return string */ public function getShipping_discount() { return $this->shipping_discount; } /** * Amount being charged as insurance. * * * @param string|double $insurance * * @return $this */ public function setInsurance($insurance) { NumericValidator::validate($insurance, "Insurance"); $insurance = FormatConverter::formatToTwoDecimalPlaces($insurance); $this->insurance = $insurance; return $this; } /** * Amount being charged as insurance. * * @return string */ public function getInsurance() { return $this->insurance; } /** * Amount being charged as handling fee. * * * @param string|double $handling_fee * * @return $this */ public function setHandlingFee($handling_fee) { NumericValidator::validate($handling_fee, "Handling Fee"); $handling_fee = FormatConverter::formatToTwoDecimalPlaces($handling_fee); $this->handling_fee = $handling_fee; return $this; } /** * Amount being charged as handling fee. * * @return string */ public function getHandlingFee() { return $this->handling_fee; } /** * Amount being charged as handling fee. * * @deprecated Instead use setHandlingFee * * @param string $handling_fee * @return $this */ public function setHandling_fee($handling_fee) { $this->handling_fee = $handling_fee; return $this; } /** * Amount being charged as handling fee. * @deprecated Instead use getHandlingFee * * @return string */ public function getHandling_fee() { return $this->handling_fee; } /** * Amount being charged as gift wrap fee. * * @param string|double $gift_wrap * * @return $this */ public function setGiftWrap($gift_wrap) { NumericValidator::validate($gift_wrap, "Gift Wrap"); $gift_wrap = FormatConverter::formatToTwoDecimalPlaces($gift_wrap); $this->gift_wrap = $gift_wrap; return $this; } /** * Amount being charged as gift wrap fee. * * @return string */ public function getGiftWrap() { return $this->gift_wrap; } /** * Amount being charged as gift wrap fee. * * @deprecated Instead use setGiftWrap * * @param string $gift_wrap * @return $this */ public function setGift_wrap($gift_wrap) { $this->gift_wrap = $gift_wrap; return $this; } /** * Amount being charged as gift wrap fee. * @deprecated Instead use getGiftWrap * * @return string */ public function getGift_wrap() { return $this->gift_wrap; } }