StreamCreateRequestInterface.php 581 B

123456789101112131415161718192021222324
  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. /**
  7. * StreamCreateRequestInterface
  8. *
  9. * @deprecated since 1.5.0 | use implementation
  10. *
  11. * @package Temando\Shipping\Rest
  12. * @author Benjamin Heuer <benjamin.heuer@netresearch.de>
  13. * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
  14. * @link http://www.temando.com/
  15. */
  16. interface StreamCreateRequestInterface
  17. {
  18. /**
  19. * @return string
  20. */
  21. public function getRequestBody();
  22. }