You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**linked_id** | **string** | A customer-provided id that was sent with the request. | [optional]
13
+
**suspect** | **bool** | Field is `true` if you have previously set the `suspect` flag for this event using the [Server API Update event endpoint](https://dev.fingerprint.com/reference/updateevent). | [optional]
13
14
**timestamp** | **int** | Timestamp of the event with millisecond precision in Unix time. |
14
15
**time** | [**\DateTime**](\DateTime.md) | Time expressed according to ISO 8601 in UTC format, when the request from the JS agent was made. We recommend to treat requests that are older than 2 minutes as malicious. Otherwise, request replay attacks are possible. |
15
16
**url** | **string** | Page URL from which the request was sent. |
Copy file name to clipboardExpand all lines: docs/Model/VPNMethods.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
7
7
**public_vpn** | **bool** | Request IP address is owned and used by a public VPN service provider. |
8
8
**auxiliary_mobile** | **bool** | This method applies to mobile devices only. Indicates the result of additional methods used to detect a VPN in mobile devices. |
9
9
**os_mismatch** | **bool** | The browser runs on a different operating system than the operating system inferred from the request network signature. |
10
+
**relay** | **bool** | Request IP address belongs to a relay service provider, indicating the use of relay services like [Apple Private relay](https://support.apple.com/en-us/102602) or [Cloudflare Warp](https://developers.cloudflare.com/warp-client/). * Like VPNs, relay services anonymize the visitor's true IP address. * Unlike traditional VPNs, relay services don't let visitors spoof their location by choosing an exit node in a different country. This field allows you to differentiate VPN users and relay service users in your fraud prevention logic. |
10
11
11
12
[[Back to Model list]](../../README.md#documentation-for-models)[[Back to API list]](../../README.md#documentation-for-api-endpoints)[[Back to README]](../../README.md)
@@ -467,6 +473,28 @@ public function setLinkedId(?string $linked_id): self
467
473
return$this;
468
474
}
469
475
476
+
/**
477
+
* Gets suspect.
478
+
*/
479
+
publicfunctiongetSuspect(): ?bool
480
+
{
481
+
return$this->container['suspect'];
482
+
}
483
+
484
+
/**
485
+
* Sets suspect.
486
+
*
487
+
* @param ?bool $suspect Field is `true` if you have previously set the `suspect` flag for this event using the [Server API Update event endpoint](https://dev.fingerprint.com/reference/updateevent).
0 commit comments