* @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @link https://www.temando.com/ */ class GetCompletions implements GetCompletionsInterface { /** * @var \Temando\Shipping\Rest\Response\DataObject\Completion[] */ private $data = []; /** * Obtain response entity * * @return \Temando\Shipping\Rest\Response\DataObject\Completion[] */ public function getData() { return $this->data; } /** * Set response entity * * @param \Temando\Shipping\Rest\Response\DataObject\Completion[] $completions * @return void */ public function setData(array $completions) { $this->data = $completions; } }