fingerprint-pro-server-api-php-sdk icon indicating copy to clipboard operation
fingerprint-pro-server-api-php-sdk copied to clipboard

Class VpnResultMethods is missing osMismatch

Open manuel-watchenterprise opened this issue 7 months ago • 2 comments

The VpnResultMethods class does not include / handle osMismatch data which, however, exists in API response. This way, the information is lost and is not accessible as the class stores in its container only those properties that are known.

Original JSON response:

{
  "vpn": {
    "data": {
      "result": false,
      "originTimezone": "Europe/Budapest",
      "originCountry": "unknown",
      "methods": {
        "timezoneMismatch": false,
        "publicVPN": false,
        "auxiliaryMobile": false,
        "osMismatch": false
      }
    }
  }
}

manuel-watchenterprise avatar Jul 16 '24 12:07 manuel-watchenterprise