1 <?php
2
3 namespace PayPal\Api;
4
5 use PayPal\Common\PayPalModel;
6
7 /**
8 * Class Transactions
9 *
10 *
11 *
12 * @package PayPal\Api
13 *
14 * @property \PayPal\Api\Amount amount
15 */
16 class Transactions extends PayPalModel
17 {
18 /**
19 * Amount being collected.
20 *
21 *
22 * @param \PayPal\Api\Amount $amount
23 *
24 * @return $this
25 */
26 public function setAmount($amount)
27 {
28 $this->amount = $amount;
29 return $this;
30 }
31
32 /**
33 * Amount being collected.
34 *
35 * @return \PayPal\Api\Amount
36 */
37 public function getAmount()
38 {
39 return $this->amount;
40 }
41
42 }
43