Completed
Push — master ( 0507d4...2466a0 )
by Oleksandr
20s queued 11s
created

ConsumerScoreResponseContainer::setGender()   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 1
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\Response\Container;
9
10
class ConsumerScoreResponseContainer extends AbstractResponseContainer
11
{
12
    /**
13
     * @var int
14
     */
15
    protected $secstatus;
16
17
    /**
18
     * @var string
19
     */
20
    protected $score;
21
22
    /**
23
     * @var int
24
     */
25
    protected $scorevalue;
26
27
    /**
28
     * @var string
29
     */
30
    protected $secscore;
31
32
    /**
33
     * @var string
34
     */
35
    protected $divergence;
36
37
    /**
38
     * @var string
39
     */
40
    protected $personstatus;
41
42
    /**
43
     * @var string
44
     */
45
    protected $firstname;
46
47
    /**
48
     * @var string
49
     */
50
    protected $lastname;
51
52
    /**
53
     * @var string
54
     */
55
    protected $street;
56
57
    /**
58
     * @var string
59
     */
60
    protected $streetname;
61
62
    /**
63
     * @var string
64
     */
65
    protected $streetnumber;
66
67
    /**
68
     * @var string
69
     */
70
    protected $zip;
71
72
    /**
73
     * @var string
74
     */
75
    protected $city;
76
77
    /**
78
     * @var string
79
     */
80
    protected $gender;
81
82
    /**
83
     * @param string $city
84
     *
85
     * @return void
86
     */
87
    public function setCity($city)
88
    {
89
        $this->city = $city;
90
    }
91
92
    /**
93
     * @return string
94
     */
95
    public function getCity()
96
    {
97
        return $this->city;
98
    }
99
100
    /**
101
     * @param string $divergence
102
     *
103
     * @return void
104
     */
105
    public function setDivergence($divergence)
106
    {
107
        $this->divergence = $divergence;
108
    }
109
110
    /**
111
     * @return string
112
     */
113
    public function getDivergence()
114
    {
115
        return $this->divergence;
116
    }
117
118
    /**
119
     * @param string $firstname
120
     *
121
     * @return void
122
     */
123
    public function setFirstname($firstname)
124
    {
125
        $this->firstname = $firstname;
126
    }
127
128
    /**
129
     * @return string
130
     */
131
    public function getFirstname()
132
    {
133
        return $this->firstname;
134
    }
135
136
    /**
137
     * @param string $lastname
138
     *
139
     * @return void
140
     */
141
    public function setLastname($lastname)
142
    {
143
        $this->lastname = $lastname;
144
    }
145
146
    /**
147
     * @return string
148
     */
149
    public function getLastname()
150
    {
151
        return $this->lastname;
152
    }
153
154
    /**
155
     * @param string $personstatus
156
     *
157
     * @return void
158
     */
159
    public function setPersonstatus($personstatus)
160
    {
161
        $this->personstatus = $personstatus;
162
    }
163
164
    /**
165
     * @return string
166
     */
167
    public function getPersonstatus()
168
    {
169
        return $this->personstatus;
170
    }
171
172
    /**
173
     * @param string $score
174
     *
175
     * @return void
176
     */
177
    public function setScore($score)
178
    {
179
        $this->score = $score;
180
    }
181
182
    /**
183
     * @return string
184
     */
185
    public function getScore()
186
    {
187
        return $this->score;
188
    }
189
190
    /**
191
     * @param int $scorevalue
192
     *
193
     * @return void
194
     */
195
    public function setScorevalue($scorevalue)
196
    {
197
        $this->scorevalue = $scorevalue;
198
    }
199
200
    /**
201
     * @return int
202
     */
203
    public function getScorevalue()
204
    {
205
        return $this->scorevalue;
206
    }
207
208
    /**
209
     * @param string $secscore
210
     *
211
     * @return void
212
     */
213
    public function setSecscore($secscore)
214
    {
215
        $this->secscore = $secscore;
216
    }
217
218
    /**
219
     * @return string
220
     */
221
    public function getSecscore()
222
    {
223
        return $this->secscore;
224
    }
225
226
    /**
227
     * @param int $secstatus
228
     *
229
     * @return void
230
     */
231
    public function setSecstatus($secstatus)
232
    {
233
        $this->secstatus = $secstatus;
234
    }
235
236
    /**
237
     * @return int
238
     */
239
    public function getSecstatus()
240
    {
241
        return $this->secstatus;
242
    }
243
244
    /**
245
     * @param string $street
246
     *
247
     * @return void
248
     */
249
    public function setStreet($street)
250
    {
251
        $this->street = $street;
252
    }
253
254
    /**
255
     * @return string
256
     */
257
    public function getStreet()
258
    {
259
        return $this->street;
260
    }
261
262
    /**
263
     * @param string $streetname
264
     *
265
     * @return void
266
     */
267
    public function setStreetname($streetname)
268
    {
269
        $this->streetname = $streetname;
270
    }
271
272
    /**
273
     * @return string
274
     */
275
    public function getStreetname()
276
    {
277
        return $this->streetname;
278
    }
279
280
    /**
281
     * @param string $streetnumber
282
     *
283
     * @return void
284
     */
285
    public function setStreetnumber($streetnumber)
286
    {
287
        $this->streetnumber = $streetnumber;
288
    }
289
290
    /**
291
     * @return string
292
     */
293
    public function getStreetnumber()
294
    {
295
        return $this->streetnumber;
296
    }
297
298
    /**
299
     * @param string $zip
300
     *
301
     * @return void
302
     */
303
    public function setZip($zip)
304
    {
305
        $this->zip = $zip;
306
    }
307
308
    /**
309
     * @return string
310
     */
311
    public function getZip()
312
    {
313
        return $this->zip;
314
    }
315
316
    /**
317
     * @return string
318
     */
319
    public function getGender(): ?string
320
    {
321
        return $this->gender;
322
    }
323
324
    /**
325
     * @param string $gender
326
     *
327
     * @return void
328
     */
329
    public function setGender(string $gender): void
330
    {
331
        $this->gender = $gender;
332
    }
333
}
334