1 | <?php |
||
8 | class ScVerifyResult implements StatusResultInterface |
||
9 | { |
||
10 | /** @var string */ |
||
11 | private $status; |
||
12 | |||
13 | /** @var string */ |
||
14 | private $name; |
||
15 | |||
16 | /** @var string */ |
||
17 | private $surname; |
||
18 | |||
19 | /** @var string */ |
||
20 | private $code; |
||
21 | |||
22 | /** @var string email not always available */ |
||
23 | private $email; |
||
24 | |||
25 | /** @var string */ |
||
26 | private $country; |
||
27 | |||
28 | /** |
||
29 | * Fields expected in response |
||
30 | * @return array |
||
31 | */ |
||
32 | 6 | public function getFields() |
|
43 | |||
44 | /** |
||
45 | * Gets the value of status. |
||
46 | * @return mixed |
||
47 | */ |
||
48 | 1 | public function getStatus() |
|
52 | |||
53 | /** |
||
54 | * Sets the value of status. |
||
55 | * @param mixed $status the status |
||
56 | * @return void |
||
57 | */ |
||
58 | 1 | public function setStatus($status) |
|
62 | |||
63 | /** |
||
64 | * Gets the value of name. |
||
65 | * @return mixed |
||
66 | */ |
||
67 | 1 | public function getName() |
|
71 | |||
72 | /** |
||
73 | * Sets the value of name. |
||
74 | * @param mixed $name the name |
||
75 | * @return void |
||
76 | */ |
||
77 | 1 | public function setName($name) |
|
81 | |||
82 | /** |
||
83 | * Gets the value of surname. |
||
84 | * @return mixed |
||
85 | */ |
||
86 | 1 | public function getSurname() |
|
90 | |||
91 | /** |
||
92 | * Sets the value of surname. |
||
93 | * @param mixed $surname the surname |
||
94 | * @return void |
||
95 | */ |
||
96 | 1 | public function setSurname($surname) |
|
100 | |||
101 | /** |
||
102 | * Gets the value of code. |
||
103 | * @return mixed |
||
104 | */ |
||
105 | 1 | public function getCode() |
|
109 | |||
110 | /** |
||
111 | * Sets the value of code. |
||
112 | * @param mixed $code the code |
||
113 | * @return void |
||
114 | */ |
||
115 | 1 | public function setCode($code) |
|
119 | |||
120 | /** |
||
121 | * Gets the value of email. |
||
122 | * @return mixed |
||
123 | */ |
||
124 | 1 | public function getEmail() |
|
128 | |||
129 | /** |
||
130 | * Sets the value of email. |
||
131 | * @param mixed $email the email |
||
132 | * @return void |
||
133 | */ |
||
134 | 1 | public function setEmail($email) |
|
138 | |||
139 | /** |
||
140 | * Gets the value of country. |
||
141 | * @return mixed |
||
142 | */ |
||
143 | 1 | public function getCountry() |
|
147 | |||
148 | /** |
||
149 | * Sets the value of country. |
||
150 | * @param mixed $country the country |
||
151 | * @return void |
||
152 | */ |
||
153 | 1 | public function setCountry($country) |
|
157 | } |
||
158 |