commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
DiscountGroupCreatedMessagePayloadBuilder.php
1<?php
2
3declare(strict_types=1);
10
18use stdClass;
19
24{
29 private $discountGroup;
30
37 public function getDiscountGroup()
38 {
39 return $this->discountGroup instanceof DiscountGroupBuilder ? $this->discountGroup->build() : $this->discountGroup;
40 }
41
46 public function withDiscountGroup(?DiscountGroup $discountGroup)
47 {
48 $this->discountGroup = $discountGroup;
49
50 return $this;
51 }
52
57 public function withDiscountGroupBuilder(?DiscountGroupBuilder $discountGroup)
58 {
59 $this->discountGroup = $discountGroup;
60
61 return $this;
62 }
63
65 {
67 $this->discountGroup instanceof DiscountGroupBuilder ? $this->discountGroup->build() : $this->discountGroup
68 );
69 }
70
72 {
73 return new self();
74 }
75}