Update payments API to v1.9

This commit is contained in:
mrak and sdcoffey
2016-10-25 17:29:48 -05:00
committed by jaypatel512 and sdcoffey
parent 7c5ea8b997
commit c2947ff409
92 changed files with 1583 additions and 973 deletions

View File

@@ -11,9 +11,9 @@ use PayPal\Common\PayPalModel;
*
* @package PayPal\Api
*
* @property int term
* @property \PayPal\Api\Currency monthly_payment
* @property \PayPal\Api\Currency discount_amount
* @property int term
* @property \PayPal\Api\Currency monthly_payment
* @property \PayPal\Api\Currency discount_amount
* @property string discount_percentage
*/
class InstallmentOption extends PayPalModel
@@ -22,7 +22,7 @@ class InstallmentOption extends PayPalModel
* Number of installments
*
* @param int $term
*
*
* @return $this
*/
public function setTerm($term)
@@ -45,7 +45,7 @@ class InstallmentOption extends PayPalModel
* Monthly payment
*
* @param \PayPal\Api\Currency $monthly_payment
*
*
* @return $this
*/
public function setMonthlyPayment($monthly_payment)
@@ -68,7 +68,7 @@ class InstallmentOption extends PayPalModel
* Discount amount applied to the payment, if any
*
* @param \PayPal\Api\Currency $discount_amount
*
*
* @return $this
*/
public function setDiscountAmount($discount_amount)
@@ -91,7 +91,7 @@ class InstallmentOption extends PayPalModel
* Discount percentage applied to the payment, if any
*
* @param string $discount_percentage
*
*
* @return $this
*/
public function setDiscountPercentage($discount_percentage)