Passed
Pull Request — master (#30)
by Volodymyr
08:58 queued 03:53
created

ConsumerScoreContainer::getCompany()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
3
/**
4
 * MIT License
5
 * Use of this software requires acceptance of the Evaluation License Agreement. See LICENSE file.
6
 */
7
8
namespace SprykerEco\Zed\Payone\Business\Api\Request\Container;
9
10
use SprykerEco\Shared\Payone\PayoneApiConstants;
11
12
class ConsumerScoreContainer extends AbstractRequestContainer
13
{
14
    /**
15
     * @var string
16
     */
17
    protected $request = PayoneApiConstants::REQUEST_TYPE_CONSUMERSCORE;
18
19
    /**
20
     * @var int
21
     */
22
    protected $aid;
23
24
    /**
25
     * @var string
26
     */
27
    protected $addresschecktype;
28
29
    /**
30
     * @var string
31
     */
32
    protected $consumerscoretype;
33
34
    /**
35
     * @var string
36
     */
37
    protected $firstname;
38
39
    /**
40
     * @var string
41
     */
42
    protected $lastname;
43
44
    /**
45
     * @var string
46
     */
47
    protected $company;
48
49
    /**
50
     * @var string
51
     */
52
    protected $street;
53
54
    /**
55
     * @var string
56
     */
57
    protected $streetname;
58
59
    /**
60
     * @var string
61
     */
62
    protected $streetnumber;
63
64
    /**
65
     * @var string
66
     */
67
    protected $zip;
68
69
    /**
70
     * @var string
71
     */
72
    protected $city;
73
74
    /**
75
     * @var string
76
     */
77
    protected $country;
78
79
    /**
80
     * @var string
81
     */
82
    protected $birthday;
83
84
    /**
85
     * @var string
86
     */
87
    protected $telephonenumber;
88
89
    /**
90
     * @var string
91
     */
92
    protected $language;
93
94
    /**
95
     * @var string
96
     */
97
    protected $gender;
98
99
    /**
100
     * @param string $addresschecktype
101
     *
102
     * @return void
103
     */
104
    public function setAddressCheckType($addresschecktype)
105
    {
106
        $this->addresschecktype = $addresschecktype;
107
    }
108
109
    /**
110
     * @return string
111
     */
112
    public function getAddressCheckType()
113
    {
114
        return $this->addresschecktype;
115
    }
116
117
    /**
118
     * @param int $aid
119
     *
120
     * @return void
121
     */
122
    public function setAid($aid)
123
    {
124
        $this->aid = $aid;
125
    }
126
127
    /**
128
     * @return int
129
     */
130
    public function getAid()
131
    {
132
        return $this->aid;
133
    }
134
135
    /**
136
     * @param string $birthday
137
     *
138
     * @return void
139
     */
140
    public function setBirthday($birthday)
141
    {
142
        $this->birthday = $birthday;
143
    }
144
145
    /**
146
     * @return string
147
     */
148
    public function getBirthday()
149
    {
150
        return $this->birthday;
151
    }
152
153
    /**
154
     * @param string $city
155
     *
156
     * @return void
157
     */
158
    public function setCity($city)
159
    {
160
        $this->city = $city;
161
    }
162
163
    /**
164
     * @return string
165
     */
166
    public function getCity()
167
    {
168
        return $this->city;
169
    }
170
171
    /**
172
     * @param string $company
173
     *
174
     * @return void
175
     */
176
    public function setCompany($company)
177
    {
178
        $this->company = $company;
179
    }
180
181
    /**
182
     * @return string
183
     */
184
    public function getCompany()
185
    {
186
        return $this->company;
187
    }
188
189
    /**
190
     * @param string $consumerscoretype
191
     *
192
     * @return void
193
     */
194
    public function setConsumerScoreType($consumerscoretype)
195
    {
196
        $this->consumerscoretype = $consumerscoretype;
197
    }
198
199
    /**
200
     * @return string
201
     */
202
    public function getConsumerScoreType()
203
    {
204
        return $this->consumerscoretype;
205
    }
206
207
    /**
208
     * @param string $country
209
     *
210
     * @return void
211
     */
212
    public function setCountry($country)
213
    {
214
        $this->country = $country;
215
    }
216
217
    /**
218
     * @return string
219
     */
220
    public function getCountry()
221
    {
222
        return $this->country;
223
    }
224
225
    /**
226
     * @param string $firstname
227
     *
228
     * @return void
229
     */
230
    public function setFirstName($firstname)
231
    {
232
        $this->firstname = $firstname;
233
    }
234
235
    /**
236
     * @return string
237
     */
238
    public function getFirstName()
239
    {
240
        return $this->firstname;
241
    }
242
243
    /**
244
     * @param string $language
245
     *
246
     * @return void
247
     */
248
    public function setLanguage($language)
249
    {
250
        $this->language = $language;
251
    }
252
253
    /**
254
     * @return string
255
     */
256
    public function getLanguage()
257
    {
258
        return $this->language;
259
    }
260
261
    /**
262
     * @param string $lastname
263
     *
264
     * @return void
265
     */
266
    public function setLastName($lastname)
267
    {
268
        $this->lastname = $lastname;
269
    }
270
271
    /**
272
     * @return string
273
     */
274
    public function getLastName()
275
    {
276
        return $this->lastname;
277
    }
278
279
    /**
280
     * @param string $street
281
     *
282
     * @return void
283
     */
284
    public function setStreet($street)
285
    {
286
        $this->street = $street;
287
    }
288
289
    /**
290
     * @return string
291
     */
292
    public function getStreet()
293
    {
294
        return $this->street;
295
    }
296
297
    /**
298
     * @param string $streetname
299
     *
300
     * @return void
301
     */
302
    public function setStreetName($streetname)
303
    {
304
        $this->streetname = $streetname;
305
    }
306
307
    /**
308
     * @return string
309
     */
310
    public function getStreetName()
311
    {
312
        return $this->streetname;
313
    }
314
315
    /**
316
     * @param string $streetnumber
317
     *
318
     * @return void
319
     */
320
    public function setStreetNumber($streetnumber)
321
    {
322
        $this->streetnumber = $streetnumber;
323
    }
324
325
    /**
326
     * @return string
327
     */
328
    public function getStreetNumber()
329
    {
330
        return $this->streetnumber;
331
    }
332
333
    /**
334
     * @param string $telephonenumber
335
     *
336
     * @return void
337
     */
338
    public function setTelephoneNumber($telephonenumber)
339
    {
340
        $this->telephonenumber = $telephonenumber;
341
    }
342
343
    /**
344
     * @return string
345
     */
346
    public function getTelephoneNumber()
347
    {
348
        return $this->telephonenumber;
349
    }
350
351
    /**
352
     * @param string $zip
353
     *
354
     * @return void
355
     */
356
    public function setZip($zip)
357
    {
358
        $this->zip = $zip;
359
    }
360
361
    /**
362
     * @return string
363
     */
364
    public function getZip()
365
    {
366
        return $this->zip;
367
    }
368
369
    /**
370
     * @return string|null
371
     */
372
    public function getGender(): ?string
373
    {
374
        return $this->gender;
375
    }
376
377
    /**
378
     * @param string $gender
379
     */
380
    public function setGender(string $gender): void
381
    {
382
        $this->gender = $gender;
383
    }
384
}
385