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