Issues (104)

Api/Data/AddressesInterface.php (1 issue)

Labels
Severity
1
<?php
2
/**
3
 * Copyright © Getnet. All rights reserved.
4
 *
5
 * @author    Bruno Elisei <[email protected]>
6
 * See LICENSE for license details.
7
 */
8
9
namespace Getnet\SubSellerMagento\Api\Data;
10
11
/**
12
 * Interface for sub seller addresses results.
13
 *
14
 * @api
15
 *
16
 * @since 100.0.2
17
 */
18
interface AddressesInterface extends \Magento\Framework\Api\ExtensibleDataInterface
19
{
20
    /**
21
     * Get sub seller business address street.
22
     *
23
     * @return string|null
24
     */
25
    public function getAddressStreet();
26
27
    /**
28
     * Set sub seller business address street.
29
     *
30
     * @param string $addressStreet
31
     *
32
     * @return $this
33
     */
34
    public function setAddressStreet($addressStreet);
35
36
    /**
37
     * Get sub seller business address street number.
38
     *
39
     * @return string|null
40
     */
41
    public function getAddressStreetNumber();
42
43
    /**
44
     * Set sub seller business address street number.
45
     *
46
     * @param string $addressStreetNumber
47
     *
48
     * @return $this
49
     */
50
    public function setAddressStreetNumber($addressStreetNumber);
51
52
    /**
53
     * Get sub seller business address street district.
54
     *
55
     * @return string|null
56
     */
57
    public function getAddressStreetDistrict();
58
59
    /**
60
     * Set sub seller business address street district.
61
     *
62
     * @param string $addressStreetDistrict
63
     *
64
     * @return $this
65
     */
66
    public function setAddressStreetDistrict($addressStreetDistrict);
67
68
    /**
69
     * Get sub seller business address street complement.
70
     *
71
     * @return string|null
72
     */
73
    public function getAddressStreetComplement();
74
75
    /**
76
     * Set sub seller business address street complement.
77
     *
78
     * @param string $addressStreetComplement
79
     *
80
     * @return $this
81
     */
82
    public function setAddressStreetComplement($addressStreetComplement);
83
84
    /**
85
     * Get sub seller business address city.
86
     *
87
     * @return string|null
88
     */
89
    public function getAddressCity();
90
91
    /**
92
     * Set sub seller business address city.
93
     *
94
     * @param string $addressCity
95
     *
96
     * @return $this
97
     */
98
    public function setAddressCity($addressCity);
99
100
    /**
101
     * Get sub seller business address region.
102
     *
103
     * @return string|null
104
     */
105
    public function getAddressRegion();
106
107
    /**
108
     * Set sub seller business address region.
109
     *
110
     * @param string $addressRegion
111
     *
112
     * @return $this
113
     */
114
    public function setAddressRegion($addressRegion);
115
116
    /**
117
     * Get sub seller business address region id.
118
     *
119
     * @return int|null
120
     */
121
    public function getAddressRegionId();
122
123
    /**
124
     * Set sub seller business address region id.
125
     *
126
     * @param int $addressRegionId
127
     *
128
     * @return $this
129
     */
130
    public function setAddressRegionId($addressRegionId);
131
132
    /**
133
     * Get sub seller business address postcode.
134
     *
135
     * @return string|null
136
     */
137
    public function getAddressPostcode();
138
139
    /**
140
     * Set sub seller business address postcode.
141
     *
142
     * @param string $addressPostcode
143
     *
144
     * @return $this
145
     */
146
    public function setAddressPostcode($addressPostcode);
147
148
    /**
149
     * Get sub seller business address country id.
150
     *
151
     * @return string|null
152
     */
153
    public function getAddressCountryId();
154
155
    /**
156
     * Set sub seller business address country id.
157
     *
158
     * @param string $addressCountryId
159
     *
160
     * @return $this
161
     */
162
    public function setAddressCountryId($addressCountryId);
163
164
    /**
165
     * Retrieve existing extension attributes object or create a new one.
166
     *
167
     * @return \Getnet\SubSellerMagento\Api\Data\AddressesExtensionInterface|null
0 ignored issues
show
The type Getnet\SubSellerMagento\...essesExtensionInterface was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
168
     */
169
    public function getExtensionAttributes();
170
171
    /**
172
     * Set an extension attributes object.
173
     *
174
     * @param \Getnet\SubSellerMagento\Api\Data\AddressesExtensionInterface $extensionAttributes
175
     *
176
     * @return $this
177
     */
178
    public function setExtensionAttributes(
179
        \Getnet\SubSellerMagento\Api\Data\AddressesExtensionInterface $extensionAttributes
180
    );
181
}
182