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 Details extends PPModel {
/**
* Amount being charged for shipping.
*
* @param string $shipping
*/
public function setShipping($shipping) {
@@ -15,6 +17,7 @@ class Details extends PPModel {
/**
* Amount being charged for shipping.
*
* @return string
*/
public function getShipping() {
@@ -24,6 +27,7 @@ class Details extends PPModel {
/**
* Sub-total (amount) of items being paid for.
*
* @param string $subtotal
*/
public function setSubtotal($subtotal) {
@@ -33,6 +37,7 @@ class Details extends PPModel {
/**
* Sub-total (amount) of items being paid for.
*
* @return string
*/
public function getSubtotal() {
@@ -42,6 +47,7 @@ class Details extends PPModel {
/**
* Amount being charged as tax.
*
* @param string $tax
*/
public function setTax($tax) {
@@ -51,6 +57,7 @@ class Details extends PPModel {
/**
* Amount being charged as tax.
*
* @return string
*/
public function getTax() {
@@ -60,6 +67,7 @@ class Details extends PPModel {
/**
* Fee charged by PayPal. In case of a refund, this is the fee amount refunded to the original receipient of the payment.
*
* @param string $fee
*/
public function setFee($fee) {
@@ -69,6 +77,7 @@ class Details extends PPModel {
/**
* Fee charged by PayPal. In case of a refund, this is the fee amount refunded to the original receipient of the payment.
*
* @return string
*/
public function getFee() {