commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
StateSetRolesActionBuilder.php
1 <?php
2 
3 declare(strict_types=1);
10 
16 use stdClass;
17 
21 final class StateSetRolesActionBuilder implements Builder
22 {
27  private $roles;
28 
36  public function getRoles()
37  {
38  return $this->roles;
39  }
40 
45  public function withRoles(?array $roles)
46  {
47  $this->roles = $roles;
48 
49  return $this;
50  }
51 
52 
53  public function build(): StateSetRolesAction
54  {
55  return new StateSetRolesActionModel(
56  $this->roles
57  );
58  }
59 
60  public static function of(): StateSetRolesActionBuilder
61  {
62  return new self();
63  }
64 }