mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-10 21:08:41 +00:00
39 lines
585 B
PHP
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;
|
|
}
|
|
}
|