StreamCreateRequest.php 937 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. /**
  3. * Refer to LICENSE.txt distributed with the Temando Shipping module for notice of license
  4. */
  5. namespace Temando\Shipping\Rest\Request;
  6. use Temando\Shipping\Rest\Request\Type\StreamRequestType;
  7. /**
  8. * StreamCreateRequest
  9. *
  10. * @package Temando\Shipping\Rest
  11. * @author Benjamin Heuer <benjamin.heuer@netresearch.de>
  12. * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
  13. * @link http://www.temando.com/
  14. */
  15. class StreamCreateRequest implements StreamCreateRequestInterface
  16. {
  17. /**
  18. * @var StreamRequestType
  19. */
  20. private $stream;
  21. /**
  22. * StreamCreateRequest constructor.
  23. *
  24. * @param StreamRequestType $stream
  25. */
  26. public function __construct(StreamRequestType $stream)
  27. {
  28. $this->stream = $stream;
  29. }
  30. /**
  31. * @return string
  32. */
  33. public function getRequestBody()
  34. {
  35. return json_encode($this->stream);
  36. }
  37. }