Overview

Namespaces

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

Classes

  • GeoIp2\Database\Reader
  • GeoIp2\Model\AnonymousIp
  • GeoIp2\Model\Asn
  • 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\Disposition
  • 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
  • Throwable

Exceptions

  • BadFunctionCallException
  • BadMethodCallException
  • Exception
  • GeoIp2\Exception\AddressNotFoundException
  • GeoIp2\Exception\AuthenticationException
  • GeoIp2\Exception\GeoIp2Exception
  • GeoIp2\Exception\HttpException
  • GeoIp2\Exception\InvalidRequestException
  • GeoIp2\Exception\OutOfQueriesException
  • InvalidArgumentException
  • LogicException
  • Overview
  • Namespace
  • Class
 1: <?php
 2: 
 3: namespace MaxMind\MinFraud\Model;
 4: 
 5: /**
 6:  * Warning about the minFraud request.
 7:  *
 8:  * Although more codes may be added in the future, the current warning codes
 9:  * are:
10:  *
11:  * * `BILLING_CITY_NOT_FOUND` - the billing city could not be found in our
12:  *   database.
13:  * * `BILLING_COUNTRY_NOT_FOUND` - the billing country could not be found in
14:  *   our database.
15:  * * `BILLING_POSTAL_NOT_FOUND` - the billing postal could not be found in our
16:  *   database.
17:  * * `INPUT_INVALID` - the value associated with the key does not meet the
18:  *   required constraints, e.g., "United States" in a field that requires a
19:  *   two-letter country code.
20:  * * `INPUT_UNKNOWN` - an unknown key was encountered in the request body.
21:  * * `IP_ADDRESS_NOT_FOUND` - the IP address could not be geolocated.
22:  * * `SHIPPING_CITY_NOT_FOUND` - the shipping city could not be found in our
23:  *   database.
24:  * * `SHIPPING_COUNTRY_NOT_FOUND` - the shipping country could not be found in
25:  *   our database.
26:  * * `SHIPPING_POSTAL_NOT_FOUND` - the shipping postal could not be found in
27:  *   our database.
28:  *
29:  * @property-read string $code This value is a machine-readable code identifying the
30:  * warning.
31:  * @property-read string $warning This property provides a human-readable
32:  * explanation of the warning. The description may change at any time and
33:  * should not be matched against.
34:  * @property-read array|null $input A JSON Pointer to the input field that the
35:  * warning is associated with. For instance, if the warning was about the
36:  * billing city, this would be `/billing/city`. If it was for the price in
37:  * the second shopping cart item, it would be `/shopping_cart/1/price`.
38:  */
39: class Warning extends AbstractModel
40: {
41:     /**
42:      * @internal
43:      */
44:     protected $code;
45: 
46:     /**
47:      * @internal
48:      */
49:     protected $warning;
50: 
51:     /**
52:      * @internal
53:      */
54:     protected $inputPointer;
55: 
56:     public function __construct($response, $locales = ['en'])
57:     {
58:         parent::__construct($response, $locales);
59: 
60:         $this->code = $this->safeArrayLookup($response['code']);
61:         $this->warning = $this->safeArrayLookup($response['warning']);
62:         $this->inputPointer = $this->safeArrayLookup($response['input_pointer']);
63:     }
64: }
65: 
minFraud PHP API v1.4.0 API documentation generated by ApiGen