Skip to content

Commit 4b0f5dc

Browse files
authored
Add the phpdocs to the pickup point interface in order to fix the magento order endpoint (#104)
1 parent 9e96405 commit 4b0f5dc

File tree

1 file changed

+53
-0
lines changed

1 file changed

+53
-0
lines changed

Api/Data/Sales/Order/PickupPointExtensionAttributesInterface.php

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,69 @@
55
interface 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
}

0 commit comments

Comments
 (0)