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