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

@@ -0,0 +1,38 @@
<?php
namespace PayPal\Api;
use PayPal\Common\PayPalModel;
/**
* Class InvoiceNumber
*
* The next invoice number
*
* @package PayPal\Api
*
* @property string number
*/
class InvoiceNumber extends PayPalModel
{
/**
* The next invoice number.
*
* @param string $number
*
* @return $this
*/
public function setNumber($number) {
$this->number = $number;
return $this;
}
/**
* The next invoice number.
*
* @return string
*/
public function getNumber() {
return $this->number;
}
}