minFraud PHP API v1.0.0
  • Namespace
  • Class

Namespaces

  • GeoIp2
    • Database
    • Exception
    • Model
    • Record
    • Test
      • Database
      • Model
      • WebService
    • WebService
  • MaxMind
    • MinFraud
      • Model
  • PHP

Classes

  • GeoIp2\Database\Reader
  • GeoIp2\Model\AnonymousIp
  • GeoIp2\Model\City
  • GeoIp2\Model\ConnectionType
  • GeoIp2\Model\Country
  • GeoIp2\Model\Domain
  • GeoIp2\Model\Enterprise
  • GeoIp2\Model\Insights
  • GeoIp2\Model\Isp
  • GeoIp2\Record\AbstractPlaceRecord
  • GeoIp2\Record\AbstractRecord
  • GeoIp2\Record\City
  • GeoIp2\Record\Continent
  • GeoIp2\Record\Country
  • GeoIp2\Record\Location
  • GeoIp2\Record\MaxMind
  • GeoIp2\Record\Postal
  • GeoIp2\Record\RepresentedCountry
  • GeoIp2\Record\Subdivision
  • GeoIp2\Record\Traits
  • GeoIp2\Test\Database\ReaderTest
  • GeoIp2\Test\Model\CountryTest
  • GeoIp2\Test\Model\InsightsTest
  • GeoIp2\Test\Model\NameTest
  • GeoIp2\Test\WebService\ClientTest
  • GeoIp2\WebService\Client
  • MaxMind\MinFraud
  • MaxMind\MinFraud\Model\Address
  • MaxMind\MinFraud\Model\BillingAddress
  • MaxMind\MinFraud\Model\CreditCard
  • MaxMind\MinFraud\Model\Device
  • MaxMind\MinFraud\Model\Email
  • MaxMind\MinFraud\Model\Factors
  • MaxMind\MinFraud\Model\GeoIp2Country
  • MaxMind\MinFraud\Model\GeoIp2Location
  • MaxMind\MinFraud\Model\Insights
  • MaxMind\MinFraud\Model\IpAddress
  • MaxMind\MinFraud\Model\Issuer
  • MaxMind\MinFraud\Model\Score
  • MaxMind\MinFraud\Model\ScoreIpAddress
  • MaxMind\MinFraud\Model\ShippingAddress
  • MaxMind\MinFraud\Model\Subscores
  • MaxMind\MinFraud\Model\Warning

Interfaces

  • GeoIp2\ProviderInterface
  • JsonSerializable

Exceptions

  • BadFunctionCallException
  • BadMethodCallException
  • Exception
  • GeoIp2\Exception\AddressNotFoundException
  • GeoIp2\Exception\AuthenticationException
  • GeoIp2\Exception\GeoIp2Exception
  • GeoIp2\Exception\HttpException
  • GeoIp2\Exception\InvalidRequestException
  • GeoIp2\Exception\OutOfQueriesException
  • InvalidArgumentException
  • LogicException
 1 <?php
 2 
 3 namespace GeoIp2\Record;
 4 
 5 /**
 6  *
 7  * Contains data for the subdivisions associated with an IP address
 8  *
 9  * This record is returned by all location databases and services besides
10  * Country.
11  *
12  * @property-read int|null $confidence This is a value from 0-100 indicating
13  * MaxMind's confidence that the subdivision is correct. This attribute is
14  * only available from the Insights service and the GeoIP2 Enterprise
15  * database.
16  *
17  * @property-read int|null $geonameId This is a GeoName ID for the subdivision.
18  * This attribute is returned by all location databases and services besides
19  * Country.
20  *
21  * @property-read string|null $isoCode This is a string up to three characters long
22  * contain the subdivision portion of the {@link
23  * http://en.wikipedia.org/wiki/ISO_3166-2 ISO 3166-2 code}. This attribute
24  * is returned by all location databases and services except Country.
25  *
26  * @property-read string|null $name The name of the subdivision based on the
27  * locales list passed to the constructor. This attribute is returned by all
28  * location databases and services besides Country.
29  *
30  * @property-read array|null $names An array map where the keys are locale codes
31  * and the values are names. This attribute is returned by all location
32  * databases and services besides Country.
33  */
34 class Subdivision extends AbstractPlaceRecord
35 {
36     /**
37      * @ignore
38      */
39     protected $validAttributes = array(
40         'confidence',
41         'geonameId',
42         'isoCode',
43         'names'
44     );
45 }
46 
minFraud PHP API v1.0.0 API documentation generated by ApiGen