4 use PayPal\Common\PPModel;
6 class Details extends PPModel {
8 * Amount being charged for shipping.
9 * @param string $shipping
11 public function setShipping($shipping) {
12 $this->shipping = $shipping;
17 * Amount being charged for shipping.
20 public function getShipping() {
21 return $this->shipping;
26 * Sub-total (amount) of items being paid for.
27 * @param string $subtotal
29 public function setSubtotal($subtotal) {
30 $this->subtotal = $subtotal;
35 * Sub-total (amount) of items being paid for.
38 public function getSubtotal() {
39 return $this->subtotal;
44 * Amount being charged as tax.
47 public function setTax($tax) {
53 * Amount being charged as tax.
56 public function getTax() {
62 * Fee charged by PayPal. In case of a refund, this is the fee amount refunded to the original receipient of the payment.
65 public function setFee($fee) {
71 * Fee charged by PayPal. In case of a refund, this is the fee amount refunded to the original receipient of the payment.
74 public function getFee() {