commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
CustomerSetAuthenticationModeActionBuilder.php
1 <?php
2 
3 declare(strict_types=1);
10 
16 use stdClass;
17 
22 {
27  private $authMode;
28 
33  private $password;
34 
42  public function getAuthMode()
43  {
44  return $this->authMode;
45  }
46 
53  public function getPassword()
54  {
55  return $this->password;
56  }
57 
62  public function withAuthMode(?string $authMode)
63  {
64  $this->authMode = $authMode;
65 
66  return $this;
67  }
68 
73  public function withPassword(?string $password)
74  {
75  $this->password = $password;
76 
77  return $this;
78  }
79 
80 
82  {
84  $this->authMode,
85  $this->password
86  );
87  }
88 
90  {
91  return new self();
92  }
93 }