commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
SubscriptionUpdateBuilder.php
1<?php
2
3declare(strict_types=1);
10
16use stdClass;
17
21final class SubscriptionUpdateBuilder implements Builder
22{
27 private $version;
28
33 private $actions;
34
42 public function getVersion()
43 {
44 return $this->version;
45 }
46
53 public function getActions()
54 {
55 return $this->actions;
56 }
57
62 public function withVersion(?int $version)
63 {
64 $this->version = $version;
65
66 return $this;
67 }
68
74 {
75 $this->actions = $actions;
76
77 return $this;
78 }
79
80
81 public function build(): SubscriptionUpdate
82 {
83 return new SubscriptionUpdateModel(
84 $this->version,
85 $this->actions
86 );
87 }
88
89 public static function of(): SubscriptionUpdateBuilder
90 {
91 return new self();
92 }
93}