commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
MessagesConfigurationDraftBuilder.php
1<?php
2
3declare(strict_types=1);
10
16use stdClass;
17
22{
27 private $enabled;
28
33 private $deleteDaysAfterCreation;
34
41 public function getEnabled()
42 {
43 return $this->enabled;
44 }
45
53 {
54 return $this->deleteDaysAfterCreation;
55 }
56
61 public function withEnabled(?bool $enabled)
62 {
63 $this->enabled = $enabled;
64
65 return $this;
66 }
67
72 public function withDeleteDaysAfterCreation(?int $deleteDaysAfterCreation)
73 {
74 $this->deleteDaysAfterCreation = $deleteDaysAfterCreation;
75
76 return $this;
77 }
78
79
81 {
83 $this->enabled,
84 $this->deleteDaysAfterCreation
85 );
86 }
87
88 public static function of(): MessagesConfigurationDraftBuilder
89 {
90 return new self();
91 }
92}