-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #43 from fingerprintjs/feat/update-schema-INTER-431
Add `highActivity` and `locationSpoofing` signals, support `originTimezone` for `vpn` signal
- Loading branch information
Showing
24 changed files
with
811 additions
and
113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# HighActivityResult | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**result** | **bool** | Flag indicating whether the request came from a high activity visitor. | [optional] | ||
**daily_requests** | **float** | Number of requests from the same visitor in the previous day. | [optional] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# LocationSpoofingResult | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**result** | **bool** | Flag indicating whether the request came from a device with location spoofing enabled. | [optional] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# SignalResponseHighActivity | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**data** | [**HighActivityResult**](HighActivityResult.md) | | [optional] | ||
**error** | [**ProductError**](ProductError.md) | | [optional] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# SignalResponseLocationSpoofing | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**data** | [**LocationSpoofingResult**](LocationSpoofingResult.md) | | [optional] | ||
**error** | [**ProductError**](ProductError.md) | | [optional] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
143 changes: 143 additions & 0 deletions
143
fingerprint_pro_server_api_sdk/models/high_activity_result.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,143 @@ | ||
# coding: utf-8 | ||
|
||
""" | ||
Fingerprint Pro Server API | ||
Fingerprint Pro Server API allows you to get information about visitors and about individual events in a server environment. It can be used for data exports, decision-making, and data analysis scenarios. Server API is intended for server-side usage, it's not intended to be used from the client side, whether it's a browser or a mobile device. # noqa: E501 | ||
OpenAPI spec version: 3 | ||
Contact: [email protected] | ||
Generated by: https://github.com/swagger-api/swagger-codegen.git | ||
""" | ||
|
||
import pprint | ||
import re # noqa: F401 | ||
|
||
import six | ||
|
||
class HighActivityResult(object): | ||
"""NOTE: This class is auto generated by the swagger code generator program. | ||
Do not edit the class manually. | ||
""" | ||
""" | ||
Attributes: | ||
swagger_types (dict): The key is attribute name | ||
and the value is attribute type. | ||
attribute_map (dict): The key is attribute name | ||
and the value is json key in definition. | ||
""" | ||
swagger_types = { | ||
'result': 'bool', | ||
'daily_requests': 'float' | ||
} | ||
|
||
attribute_map = { | ||
'result': 'result', | ||
'daily_requests': 'dailyRequests' | ||
} | ||
|
||
def __init__(self, result=None, daily_requests=None): # noqa: E501 | ||
"""HighActivityResult - a model defined in Swagger""" # noqa: E501 | ||
self._result = None | ||
self._daily_requests = None | ||
self.discriminator = None | ||
if result is not None: | ||
self.result = result | ||
if daily_requests is not None: | ||
self.daily_requests = daily_requests | ||
|
||
@property | ||
def result(self): | ||
"""Gets the result of this HighActivityResult. # noqa: E501 | ||
Flag indicating whether the request came from a high activity visitor. # noqa: E501 | ||
:return: The result of this HighActivityResult. # noqa: E501 | ||
:rtype: bool | ||
""" | ||
return self._result | ||
|
||
@result.setter | ||
def result(self, result): | ||
"""Sets the result of this HighActivityResult. | ||
Flag indicating whether the request came from a high activity visitor. # noqa: E501 | ||
:param result: The result of this HighActivityResult. # noqa: E501 | ||
:type: bool | ||
""" | ||
|
||
self._result = result | ||
|
||
@property | ||
def daily_requests(self): | ||
"""Gets the daily_requests of this HighActivityResult. # noqa: E501 | ||
Number of requests from the same visitor in the previous day. # noqa: E501 | ||
:return: The daily_requests of this HighActivityResult. # noqa: E501 | ||
:rtype: float | ||
""" | ||
return self._daily_requests | ||
|
||
@daily_requests.setter | ||
def daily_requests(self, daily_requests): | ||
"""Sets the daily_requests of this HighActivityResult. | ||
Number of requests from the same visitor in the previous day. # noqa: E501 | ||
:param daily_requests: The daily_requests of this HighActivityResult. # noqa: E501 | ||
:type: float | ||
""" | ||
|
||
self._daily_requests = daily_requests | ||
|
||
def to_dict(self): | ||
"""Returns the model properties as a dict""" | ||
result = {} | ||
|
||
for attr, _ in six.iteritems(self.swagger_types): | ||
value = getattr(self, attr) | ||
if isinstance(value, list): | ||
result[attr] = list(map( | ||
lambda x: x.to_dict() if hasattr(x, "to_dict") else x, | ||
value | ||
)) | ||
elif hasattr(value, "to_dict"): | ||
result[attr] = value.to_dict() | ||
elif isinstance(value, dict): | ||
result[attr] = dict(map( | ||
lambda item: (item[0], item[1].to_dict()) | ||
if hasattr(item[1], "to_dict") else item, | ||
value.items() | ||
)) | ||
else: | ||
result[attr] = value | ||
if issubclass(HighActivityResult, dict): | ||
for key, value in self.items(): | ||
result[key] = value | ||
|
||
return result | ||
|
||
def to_str(self): | ||
"""Returns the string representation of the model""" | ||
return pprint.pformat(self.to_dict()) | ||
|
||
def __repr__(self): | ||
"""For `print` and `pprint`""" | ||
return self.to_str() | ||
|
||
def __eq__(self, other): | ||
"""Returns true if both objects are equal""" | ||
if not isinstance(other, HighActivityResult): | ||
return False | ||
|
||
return self.to_dict() == other.to_dict() | ||
|
||
def __ne__(self, other): | ||
"""Returns true if both objects are not equal""" | ||
if not isinstance(other, HighActivityResult): | ||
return True | ||
|
||
return self.to_dict() != other.to_dict() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.