forked from LiveCarta/PayPal-PHP-SDK
25 lines
358 B
PHP
25 lines
358 B
PHP
<?php
|
|
namespace PayPal\Api;
|
|
|
|
|
|
class Transactions extends \PPModel {
|
|
/**
|
|
* Amount being collected.
|
|
* @param PayPal\Api\Amount $amount
|
|
*/
|
|
public function setAmount($amount) {
|
|
$this->amount = $amount;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Amount being collected.
|
|
* @return PayPal\Api\Amount
|
|
*/
|
|
public function getAmount() {
|
|
return $this->amount;
|
|
}
|
|
|
|
|
|
}
|