commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
All Classes Namespaces Functions Variables Pages
OrderExcerpt.php
1<?php
2
3declare(strict_types=1);
10
15
16interface OrderExcerpt extends JsonObject
17{
18 public const FIELD_TOTAL_PRICE = 'totalPrice';
19 public const FIELD_TAXED_PRICE = 'taxedPrice';
20 public const FIELD_VERSION = 'version';
21
28 public function getTotalPrice();
29
36 public function getTaxedPrice();
37
44 public function getVersion();
45
49 public function setTotalPrice(?TypedMoney $totalPrice): void;
50
54 public function setTaxedPrice(?TaxedPrice $taxedPrice): void;
55
59 public function setVersion(?int $version): void;
60}