commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
AddTextLineItemChangeBuilder.php
1<?php
2
3declare(strict_types=1);
10
16use stdClass;
19
24{
29 private $change;
30
35 private $nextValue;
36
41 public function getChange()
42 {
43 return $this->change;
44 }
45
52 public function getNextValue()
53 {
54 return $this->nextValue instanceof TextLineItemBuilder ? $this->nextValue->build() : $this->nextValue;
55 }
56
61 public function withChange(?string $change)
62 {
63 $this->change = $change;
64
65 return $this;
66 }
67
72 public function withNextValue(?TextLineItem $nextValue)
73 {
74 $this->nextValue = $nextValue;
75
76 return $this;
77 }
78
83 public function withNextValueBuilder(?TextLineItemBuilder $nextValue)
84 {
85 $this->nextValue = $nextValue;
86
87 return $this;
88 }
89
90 public function build(): AddTextLineItemChange
91 {
93 $this->change,
94 $this->nextValue instanceof TextLineItemBuilder ? $this->nextValue->build() : $this->nextValue
95 );
96 }
97
98 public static function of(): AddTextLineItemChangeBuilder
99 {
100 return new self();
101 }
102}