commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
MyCustomerChangeAddressActionBuilder.php
1<?php
2
3declare(strict_types=1);
10
18use stdClass;
19
24{
29 private $addressId;
30
35 private $addressKey;
36
41 private $address;
42
49 public function getAddressId()
50 {
51 return $this->addressId;
52 }
53
60 public function getAddressKey()
61 {
62 return $this->addressKey;
63 }
64
71 public function getAddress()
72 {
73 return $this->address instanceof BaseAddressBuilder ? $this->address->build() : $this->address;
74 }
75
80 public function withAddressId(?string $addressId)
81 {
82 $this->addressId = $addressId;
83
84 return $this;
85 }
86
91 public function withAddressKey(?string $addressKey)
92 {
93 $this->addressKey = $addressKey;
94
95 return $this;
96 }
97
102 public function withAddress(?BaseAddress $address)
103 {
104 $this->address = $address;
105
106 return $this;
107 }
108
113 public function withAddressBuilder(?BaseAddressBuilder $address)
114 {
115 $this->address = $address;
116
117 return $this;
118 }
119
121 {
123 $this->addressId,
124 $this->addressKey,
125 $this->address instanceof BaseAddressBuilder ? $this->address->build() : $this->address
126 );
127 }
128
129 public static function of(): MyCustomerChangeAddressActionBuilder
130 {
131 return new self();
132 }
133}