commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
ExtensionChangeDestinationActionBuilder.php
1<?php
2
3declare(strict_types=1);
10
16use stdClass;
17
22{
27 private $destination;
28
35 public function getDestination()
36 {
37 return $this->destination instanceof ExtensionDestinationBuilder ? $this->destination->build() : $this->destination;
38 }
39
44 public function withDestination(?ExtensionDestination $destination)
45 {
46 $this->destination = $destination;
47
48 return $this;
49 }
50
56 {
57 $this->destination = $destination;
58
59 return $this;
60 }
61
63 {
65 $this->destination instanceof ExtensionDestinationBuilder ? $this->destination->build() : $this->destination
66 );
67 }
68
70 {
71 return new self();
72 }
73}