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

@@ -7,7 +7,7 @@ use PayPal\Common\PayPalModel;
/**
* Class Patch
*
* A JSON Patch object used for doing partial updates to resources.
* A JSON patch object that you can use to apply partial updates to resources.
*
* @package PayPal\Api
*
@@ -43,7 +43,7 @@ class Patch extends PayPalModel
}
/**
* string containing a JSON-Pointer value that references a location within the target document (the target location) where the operation is performed.
* A JSON pointer that references a location in the target document where the operation is performed. A `string` value.
*
* @param string $path
*
@@ -56,7 +56,7 @@ class Patch extends PayPalModel
}
/**
* string containing a JSON-Pointer value that references a location within the target document (the target location) where the operation is performed.
* A JSON pointer that references a location in the target document where the operation is performed. A `string` value.
*
* @return string
*/
@@ -68,7 +68,7 @@ class Patch extends PayPalModel
/**
* New value to apply based on the operation.
*
* @param string $value
* @param mixed $value
*
* @return $this
*/
@@ -81,7 +81,7 @@ class Patch extends PayPalModel
/**
* New value to apply based on the operation.
*
* @return string
* @return mixed
*/
public function getValue()
{