commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
RemoveParcelFromDeliveryDraftBuilder.php
1<?php
2
3declare(strict_types=1);
10
16use stdClass;
17
22{
27 private $parcelId;
28
33 public function getParcelId()
34 {
35 return $this->parcelId;
36 }
37
42 public function withParcelId(?string $parcelId)
43 {
44 $this->parcelId = $parcelId;
45
46 return $this;
47 }
48
49
51 {
53 $this->parcelId
54 );
55 }
56
57 public static function of(): RemoveParcelFromDeliveryDraftBuilder
58 {
59 return new self();
60 }
61}