This repository has been archived on 2026-04-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
PayPal-PHP-SDK/lib/PayPal/Api/InvoiceNumber.php
Jay Patel c714f77980 Updated Invoicing APIs
- Updated Model objects.
- Updated Samples.
- Updated Tests.
2016-07-13 15:57:58 -05:00

39 lines
585 B
PHP

<?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;
}
}