File tree Expand file tree Collapse file tree 1 file changed +53
-0
lines changed Expand file tree Collapse file tree 1 file changed +53
-0
lines changed Original file line number Diff line number Diff line change 55interface PickupPointExtensionAttributesInterface
66{
77
8+ /**
9+ * @param string|null $pointId
10+ * @return mixed
11+ */
812 public function setPointId (?string $ pointId );
13+
14+ /**
15+ * @param string|null $name
16+ * @return mixed
17+ */
918 public function setName (?string $ name );
19+
20+ /**
21+ * @param string|null $description
22+ * @return mixed
23+ */
1024 public function setDescription (?string $ description );
25+
26+ /**
27+ * @param string|null $street
28+ * @return mixed
29+ */
1130 public function setStreet (?string $ street );
31+
32+ /**
33+ * @param string|null $zipCode
34+ * @return mixed
35+ */
1236 public function setZipCode (?string $ zipCode );
37+
38+ /**
39+ * @param string|null $city
40+ * @return mixed
41+ */
1342 public function setCity (?string $ city );
43+
44+ /**
45+ * @return string|null
46+ */
1447 public function getPointId (): ?string ;
48+
49+ /**
50+ * @return string|null
51+ */
1552 public function getName (): ?string ;
53+
54+ /**
55+ * @return string|null
56+ */
1657 public function getDescription (): ?string ;
58+
59+ /**
60+ * @return string|null
61+ */
1762 public function getStreet (): ?string ;
63+
64+ /**
65+ * @return string|null
66+ */
1867 public function getZipCode (): ?string ;
68+
69+ /**
70+ * @return string|null
71+ */
1972 public function getCity (): ?string ;
2073}
You can’t perform that action at this time.
0 commit comments