updated stubs

This commit is contained in:
Ganesh Hegde
2013-05-27 11:53:45 +05:30
parent 5b32783208
commit 11f91adee4
28 changed files with 1744 additions and 1567 deletions

View File

@@ -1,60 +1,54 @@
<?php
<?php
namespace PayPal\Api;
/**
*
*/
class Amount extends Resource {
class Amount extends \PPModel {
/**
* Setter for total
* @param string $total
*/
public function setTotal($total) {
$this->total = $total;
}
/**
* Getter for total
* @return string
*/
public function getTotal() {
return $this->total;
}
/**
* Setter for currency
* 3 letter currency code
* @param string $currency
*/
*/
public function setCurrency($currency) {
$this->currency = $currency;
}
}
/**
* Getter for currency
* 3 letter currency code
* @return string
*/
*/
public function getCurrency() {
return $this->currency;
}
/**
* Setter for details
* @param PayPal\Api\AmountDetails $details
*/
* Total amount charged from the Payer account (or card) to Payee. In case of a refund, this is the refunded amount to the original Payer from Payee account.
* @param string $total
*/
public function setTotal($total) {
$this->total = $total;
}
/**
* Total amount charged from the Payer account (or card) to Payee. In case of a refund, this is the refunded amount to the original Payer from Payee account.
* @return string
*/
public function getTotal() {
return $this->total;
}
/**
* Additional details of the payment amount.
* @param PayPal\Api\Details $details
*/
public function setDetails($details) {
$this->details = $details;
}
}
/**
* Getter for details
* @return PayPal\Api\AmountDetails
*/
* Additional details of the payment amount.
* @return PayPal\Api\Details
*/
public function getDetails() {
return $this->details;
}
}
}