commercetools-sdk-php-v2  master
The platform, import-api and ml-api PHP sdks generated from our api reference.
RemoveDeliveryDraftBuilder.php
1 <?php
2 
3 declare(strict_types=1);
10 
16 use stdClass;
17 
21 final class RemoveDeliveryDraftBuilder implements Builder
22 {
27  private $id;
28 
33  public function getId()
34  {
35  return $this->id;
36  }
37 
42  public function withId(?string $id)
43  {
44  $this->id = $id;
45 
46  return $this;
47  }
48 
49 
50  public function build(): RemoveDeliveryDraft
51  {
52  return new RemoveDeliveryDraftModel(
53  $this->id
54  );
55  }
56 
57  public static function of(): RemoveDeliveryDraftBuilder
58  {
59  return new self();
60  }
61 }