Updated Invoicing APIs

- Updated Model objects.
- Updated Samples.
- Updated Tests.
This commit is contained in:
Jay Patel
2016-07-13 15:16:25 -05:00
parent 9534bcb176
commit c714f77980
48 changed files with 3320 additions and 2881 deletions

View File

@@ -9,7 +9,7 @@ use PayPal\Validation\NumericValidator;
/**
* Class Cost
*
* Cost as a percent. For example, 10% should be entered as 10. Alternatively, cost as an amount. For example, an amount of 5 should be entered as 5.
* Cost as a percent or an amount. For example, to specify 10%, enter `10`. Alternatively, to specify an amount of 5, enter `5`.
*
* @package PayPal\Api
*
@@ -44,7 +44,7 @@ class Cost extends PayPalModel
}
/**
* Cost in amount. Range of 0 to 999999.99.
* The cost, as an amount. Valid range is from 0 to 1,000,000.
*
* @param \PayPal\Api\Currency $amount
*
@@ -57,7 +57,7 @@ class Cost extends PayPalModel
}
/**
* Cost in amount. Range of 0 to 999999.99.
* The cost, as an amount. Valid range is from 0 to 1,000,000.
*
* @return \PayPal\Api\Currency
*/