commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
ExternalLineItemTotalPriceModel.php
1 <?php
2 
3 declare(strict_types=1);
10 
17 use stdClass;
18 
23 {
28  protected $price;
29 
34  protected $totalPrice;
35 
36 
40  public function __construct(
41  ?Money $price = null,
42  ?Money $totalPrice = null
43  ) {
44  $this->price = $price;
45  $this->totalPrice = $totalPrice;
46  }
47 
54  public function getPrice()
55  {
56  if (is_null($this->price)) {
58  $data = $this->raw(self::FIELD_PRICE);
59  if (is_null($data)) {
60  return null;
61  }
62 
63  $this->price = MoneyModel::of($data);
64  }
65 
66  return $this->price;
67  }
68 
75  public function getTotalPrice()
76  {
77  if (is_null($this->totalPrice)) {
79  $data = $this->raw(self::FIELD_TOTAL_PRICE);
80  if (is_null($data)) {
81  return null;
82  }
83 
84  $this->totalPrice = MoneyModel::of($data);
85  }
86 
87  return $this->totalPrice;
88  }
89 
90 
94  public function setPrice(?Money $price): void
95  {
96  $this->price = $price;
97  }
98 
102  public function setTotalPrice(?Money $totalPrice): void
103  {
104  $this->totalPrice = $totalPrice;
105  }
106 }