forked from LiveCarta/PayPal-PHP-SDK
updated stubs
This commit is contained in:
22
lib/PayPal/Api/Transactions.php
Normal file
22
lib/PayPal/Api/Transactions.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
namespace PayPal\Api;
|
||||
|
||||
|
||||
class Transactions extends \PPModel {
|
||||
/**
|
||||
* Amount being collected.
|
||||
* @param PayPal\Api\Amount $amount
|
||||
*/
|
||||
public function setAmount($amount) {
|
||||
$this->amount = $amount;
|
||||
}
|
||||
|
||||
/**
|
||||
* Amount being collected.
|
||||
* @return PayPal\Api\Amount
|
||||
*/
|
||||
public function getAmount() {
|
||||
return $this->amount;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user