Support Invoice APIs

This commit is contained in:
siddick
2014-03-28 20:34:07 +05:30
parent 5b01b235ae
commit a3aba308f4
52 changed files with 5921 additions and 19 deletions

View File

@@ -2,10 +2,12 @@
namespace PayPal\Api;
use PayPal\Common\PPModel;
use PayPal\Rest\ApiContext;
class CreditCardHistory extends PPModel {
/**
* A list of credit card resources
*
* @array
* @param PayPal\Api\CreditCard $credit-cards
*/
@@ -16,6 +18,7 @@ class CreditCardHistory extends PPModel {
/**
* A list of credit card resources
*
* @return PayPal\Api\CreditCard
*/
public function getCreditCards() {
@@ -24,6 +27,7 @@ class CreditCardHistory extends PPModel {
/**
* A list of credit card resources
*
* @array
* @param PayPal\Api\CreditCard $credit-cards
* @deprecated. Instead use setCreditCards
@@ -34,6 +38,7 @@ class CreditCardHistory extends PPModel {
}
/**
* A list of credit card resources
*
* @return PayPal\Api\CreditCard
* @deprecated. Instead use getCreditCards
*/
@@ -43,6 +48,7 @@ class CreditCardHistory extends PPModel {
/**
* Number of items returned in each range of results. Note that the last results range could have fewer items than the requested number of items.
*
* @param integer $count
*/
public function setCount($count) {
@@ -52,6 +58,7 @@ class CreditCardHistory extends PPModel {
/**
* Number of items returned in each range of results. Note that the last results range could have fewer items than the requested number of items.
*
* @return integer
*/
public function getCount() {
@@ -61,6 +68,7 @@ class CreditCardHistory extends PPModel {
/**
* Identifier of the next element to get the next range of results.
*
* @param string $next_id
*/
public function setNextId($next_id) {
@@ -70,6 +78,7 @@ class CreditCardHistory extends PPModel {
/**
* Identifier of the next element to get the next range of results.
*
* @return string
*/
public function getNextId() {
@@ -78,6 +87,7 @@ class CreditCardHistory extends PPModel {
/**
* Identifier of the next element to get the next range of results.
*
* @param string $next_id
* @deprecated. Instead use setNextId
*/
@@ -87,6 +97,7 @@ class CreditCardHistory extends PPModel {
}
/**
* Identifier of the next element to get the next range of results.
*
* @return string
* @deprecated. Instead use getNextId
*/