forked from LiveCarta/PayPal-PHP-SDK
updated stubs
This commit is contained in:
@@ -1,44 +1,39 @@
|
||||
<?php
|
||||
|
||||
<?php
|
||||
namespace PayPal\Api;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
class PaymentExecution extends Resource {
|
||||
|
||||
|
||||
class PaymentExecution extends \PPModel {
|
||||
/**
|
||||
* Setter for payer_id
|
||||
* PayPal assigned Payer ID returned in the approval return url.
|
||||
* @param string $payer_id
|
||||
*/
|
||||
public function setPayer_id($payer_id) {
|
||||
*/
|
||||
public function setPayerId($payer_id) {
|
||||
$this->payer_id = $payer_id;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for payer_id
|
||||
* PayPal assigned Payer ID returned in the approval return url.
|
||||
* @return string
|
||||
*/
|
||||
public function getPayer_id() {
|
||||
*/
|
||||
public function getPayerId() {
|
||||
return $this->payer_id;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Setter for transactions
|
||||
* @param PayPal\Api\Amount $transactions
|
||||
*/
|
||||
* If the amount needs to be updated after obtaining the PayPal Payer info (eg. shipping address), it can be updated using this element.
|
||||
* @array
|
||||
* @param PayPal\Api\Transactions $transactions
|
||||
*/
|
||||
public function setTransactions($transactions) {
|
||||
$this->transactions = $transactions;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for transactions
|
||||
* @return PayPal\Api\Amount
|
||||
*/
|
||||
* If the amount needs to be updated after obtaining the PayPal Payer info (eg. shipping address), it can be updated using this element.
|
||||
* @return PayPal\Api\Transactions
|
||||
*/
|
||||
public function getTransactions() {
|
||||
return $this->transactions;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user