Total Complexity | 2 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | class ResponseFilterParameter extends Parameter |
||
15 | { |
||
16 | /** |
||
17 | * @var array |
||
18 | */ |
||
19 | protected $properties = [ |
||
20 | 'GroupBaseInfoFilter', |
||
21 | 'SelfInfoFilter' |
||
22 | ]; |
||
23 | |||
24 | /** |
||
25 | * |
||
26 | * @param array $value |
||
27 | * |
||
28 | * @return $this |
||
29 | */ |
||
30 | public function setGroupBaseInfoFilter(array $value) |
||
31 | { |
||
32 | $this->setAttribute('GroupBaseInfoFilter', $value); |
||
33 | |||
34 | return $this; |
||
35 | } |
||
36 | |||
37 | /** |
||
38 | * |
||
39 | * @param array $value |
||
40 | * |
||
41 | * @return $this |
||
42 | */ |
||
43 | public function setSelfInfoFilter(array $value) |
||
48 | } |
||
49 | } |
||
50 |