123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- <?php
- /**
- * Refer to LICENSE.txt distributed with the Temando Shipping module for notice of license
- */
- namespace Temando\Shipping\Rest\Response\Fields\Shipment;
- /**
- * Temando API Shipment Order Field
- *
- * @package Temando\Shipping\Rest
- * @author Christoph Aßmann <christoph.assmann@netresearch.de>
- * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
- * @link https://www.temando.com/
- */
- class Order
- {
- /**
- * @var string
- */
- private $reference;
- /**
- * @var string
- */
- private $customerReference;
- /**
- * @var string
- */
- private $invoiceId;
- /**
- * @var string
- */
- private $invoiceDate;
- /**
- * @return string
- */
- public function getReference()
- {
- return $this->reference;
- }
- /**
- * @param string $reference
- * @return void
- */
- public function setReference($reference)
- {
- $this->reference = $reference;
- }
- /**
- * @return string
- */
- public function getCustomerReference()
- {
- return $this->customerReference;
- }
- /**
- * @param string $customerReference
- * @return void
- */
- public function setCustomerReference($customerReference)
- {
- $this->customerReference = $customerReference;
- }
- /**
- * @return string
- */
- public function getInvoiceId()
- {
- return $this->invoiceId;
- }
- /**
- * @param string $invoiceId
- * @return void
- */
- public function setInvoiceId($invoiceId)
- {
- $this->invoiceId = $invoiceId;
- }
- /**
- * @return string
- */
- public function getInvoiceDate()
- {
- return $this->invoiceDate;
- }
- /**
- * @param string $invoiceDate
- * @return void
- */
- public function setInvoiceDate($invoiceDate)
- {
- $this->invoiceDate = $invoiceDate;
- }
- }
|