1: <?php
2:
3: namespace MaxMind\MinFraud\Model;
4:
5: use GeoIp2\Record\Country;
6:
7: /**
8: * Class GeoIp2Country
9: * @package MaxMind\MinFraud\Model
10: *
11: * @property boolean $isHighRisk This value is true if the IP country is high
12: * risk.
13: **/
14: class GeoIp2Country extends Country
15: {
16: /**
17: * @internal
18: */
19: protected $validAttributes = array(
20: 'confidence',
21: 'geonameId',
22: 'isoCode',
23: 'isHighRisk',
24: 'names'
25: );
26: }
27: