You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 line
1.1KB

  1. <?php
  2. namespace Lc\CaracoleBundle\Model\Order;
  3. use Lc\CaracoleBundle\Model\Reduction\ReductionCreditInterface;
  4. interface OrderReductionCreditInterface
  5. {
  6. public function getTitle(): ?string;
  7. public function setTitle(string $title): OrderReductionCreditInterface;
  8. public function getOrderShop(): ?OrderShopInterface;
  9. public function setOrderShop(?OrderShopInterface $orderShop
  10. ): OrderReductionCreditInterface;
  11. public function getReductionCredit(): ?ReductionCreditInterface;
  12. public function setReductionCredit(?ReductionCreditInterface $reductionCredit
  13. ): OrderReductionCreditInterface;
  14. public function getType(): ?string;
  15. public function setType(string $type): OrderReductionCreditInterface;
  16. public function getValue(): ?float;
  17. public function setValue(?float $value): OrderReductionCreditInterface;
  18. public function getUnit(): ?string;
  19. public function setUnit(?string $unit): OrderReductionCreditInterface;
  20. public function getBehaviorTaxRate(): ?string;
  21. public function setBehaviorTaxRate(?string $behaviorTaxRate
  22. ): OrderReductionCreditInterface;
  23. }