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.

59 lines
1.5KB

  1. <?php
  2. namespace Lc\CaracoleBundle\Model\Order;
  3. use Lc\SovBundle\Model\User\UserInterface;
  4. interface OrderPaymentInterface
  5. {
  6. public function getCreatedBy(): ?UserInterface;
  7. public function setCreatedBy(?UserInterface $createdBy);
  8. public function getUpdatedBy(): ?UserInterface;
  9. public function setUpdatedBy(?UserInterface $updatedBy);
  10. public function getDevAlias(): ?string;
  11. public function setDevAlias(?string $devAlias);
  12. public function getOrderShop(): ?OrderShopInterface;
  13. public function setOrderShop(?OrderShopInterface $orderShop): OrderPaymentInterface;
  14. public function setEditable(bool $editable): OrderPaymentInterface;
  15. public function getEditable(): ?bool;
  16. public function isEditable(): ?bool;
  17. public function setMeanPayment(?string $meanPayment);
  18. public function getMeanPayment(): ?string;
  19. public function getReference(): ?string;
  20. public function setReference(?string $reference);
  21. public function getPaidAt(): ?\DateTimeInterface;
  22. public function setPaidAt(?\DateTimeInterface $paidAt);
  23. public function getAmount(): ?float;
  24. public function setAmount(float $amount);
  25. public function getComment(): ?string;
  26. public function setComment(?string $comment);
  27. public function getCreatedAt(): ?\DateTimeInterface;
  28. public function setCreatedAt(\DateTimeInterface $createdAt);
  29. public function getUpdatedAt(): ?\DateTimeInterface;
  30. public function setUpdatedAt(\DateTimeInterface $updatedAt);
  31. }