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