GrandTotalRatesInterface.php 673 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Tax\Api\Data;
  7. /**
  8. * Interface GrandTotalRatesInterface
  9. * @api
  10. * @since 100.0.2
  11. */
  12. interface GrandTotalRatesInterface
  13. {
  14. /**
  15. * Get tax percentage value
  16. *
  17. * @return string
  18. */
  19. public function getPercent();
  20. /**
  21. * @param float $percent
  22. * @return $this
  23. */
  24. public function setPercent($percent);
  25. /**
  26. * Tax rate title
  27. *
  28. * @return string
  29. */
  30. public function getTitle();
  31. /**
  32. * @param string $title
  33. * @return $this
  34. */
  35. public function setTitle($title);
  36. }