221983701a171a2670c72f28fa2cb2dd98aaa969
[WP-Plugins/glm-member-db.git] /
1 <?php
2 namespace PayPal\Api;
3
4 use PayPal\Common\PPModel;
5
6 class Transactions extends PPModel {
7         /**
8          * Amount being collected.
9          * @param PayPal\Api\Amount $amount
10          */
11         public function setAmount($amount) {
12                 $this->amount = $amount;
13                 return $this;
14         }
15
16         /**
17          * Amount being collected.
18          * @return PayPal\Api\Amount
19          */
20         public function getAmount() {
21                 return $this->amount;
22         }
23
24
25 }