* @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @link https://www.temando.com/ */ class GetFulfillment implements GetFulfillmentInterface { /** * @var \Temando\Shipping\Rest\Response\DataObject\Fulfillment */ private $data; /** * @return \Temando\Shipping\Rest\Response\DataObject\Fulfillment */ public function getData() { return $this->data; } /** * @param \Temando\Shipping\Rest\Response\DataObject\Fulfillment $fulfillment * @return void */ public function setData(Fulfillment $fulfillment) { $this->data = $fulfillment; } }