ab38367594a0ab458dd6bba6b77a1aadb6550621
[WP-Plugins/glm-member-db.git] /
1 <?php
2 namespace PayPal\Api;
3
4 use PayPal\Common\PPModel;
5
6 class Details extends PPModel {
7         /**
8          * Amount being charged for shipping.
9          * @param string $shipping
10          */
11         public function setShipping($shipping) {
12                 $this->shipping = $shipping;
13                 return $this;
14         }
15
16         /**
17          * Amount being charged for shipping.
18          * @return string
19          */
20         public function getShipping() {
21                 return $this->shipping;
22         }
23
24
25         /**
26          * Sub-total (amount) of items being paid for.
27          * @param string $subtotal
28          */
29         public function setSubtotal($subtotal) {
30                 $this->subtotal = $subtotal;
31                 return $this;
32         }
33
34         /**
35          * Sub-total (amount) of items being paid for.
36          * @return string
37          */
38         public function getSubtotal() {
39                 return $this->subtotal;
40         }
41
42
43         /**
44          * Amount being charged as tax.
45          * @param string $tax
46          */
47         public function setTax($tax) {
48                 $this->tax = $tax;
49                 return $this;
50         }
51
52         /**
53          * Amount being charged as tax.
54          * @return string
55          */
56         public function getTax() {
57                 return $this->tax;
58         }
59
60
61         /**
62          * Fee charged by PayPal. In case of a refund, this is the fee amount refunded to the original receipient of the payment.
63          * @param string $fee
64          */
65         public function setFee($fee) {
66                 $this->fee = $fee;
67                 return $this;
68         }
69
70         /**
71          * Fee charged by PayPal. In case of a refund, this is the fee amount refunded to the original receipient of the payment.
72          * @return string
73          */
74         public function getFee() {
75                 return $this->fee;
76         }
77
78
79 }