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