Skip to content

Commit

Permalink
Add getPickupCode and isRealProduct method.
Browse files Browse the repository at this point in the history
  • Loading branch information
janbarasek committed Nov 13, 2022
1 parent e6c41f5 commit 3a2e9a8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/DTO/OrderInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,8 @@ public function getPackageNumber(): ?string;

public function getNotice(): ?string;

public function getPickupCode(): ?string;

/**
* The date and time the order was created or entered into the system.
* Order dates must be in the same order as the order numbers.
Expand Down
2 changes: 2 additions & 0 deletions src/DTO/OrderItemInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ public function getProduct(): ProductInterface;

public function getVariant(): ?ProductVariantInterface;

public function isRealProduct(): bool;

public function getManufacturer(): ?ManufacturerInterface;

public function getEan(): ?string;
Expand Down

0 comments on commit 3a2e9a8

Please sign in to comment.