-
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.
- Loading branch information
Showing
12 changed files
with
457 additions
and
31 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,9 @@ | ||
# ErrorVisits403 | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**error** | **str** | Error text. | | ||
|
||
[[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,10 @@ | ||
# IdentificationError | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**code** | **str** | Error code: * `429 Too Many Requests` - the limit on secret API key requests per second has been exceeded * `Failed` - internal server error | | ||
**message** | **str** | | | ||
|
||
[[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
116 changes: 116 additions & 0 deletions
116
fingerprint_pro_server_api_sdk/models/error_visits403.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,116 @@ | ||
# 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. This API can be used for data exports, decision-making, and data analysis scenarios. # 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 ErrorVisits403(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 = { | ||
'error': 'str' | ||
} | ||
|
||
attribute_map = { | ||
'error': 'error' | ||
} | ||
|
||
def __init__(self, error=None): # noqa: E501 | ||
"""ErrorVisits403 - a model defined in Swagger""" # noqa: E501 | ||
self._error = None | ||
self.discriminator = None | ||
self.error = error | ||
|
||
@property | ||
def error(self): | ||
"""Gets the error of this ErrorVisits403. # noqa: E501 | ||
Error text. # noqa: E501 | ||
:return: The error of this ErrorVisits403. # noqa: E501 | ||
:rtype: str | ||
""" | ||
return self._error | ||
|
||
@error.setter | ||
def error(self, error): | ||
"""Sets the error of this ErrorVisits403. | ||
Error text. # noqa: E501 | ||
:param error: The error of this ErrorVisits403. # noqa: E501 | ||
:type: str | ||
""" | ||
if error is None: | ||
raise ValueError("Invalid value for `error`, must not be `None`") # noqa: E501 | ||
|
||
self._error = error | ||
|
||
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(ErrorVisits403, 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, ErrorVisits403): | ||
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, ErrorVisits403): | ||
return True | ||
|
||
return self.to_dict() != other.to_dict() |
149 changes: 149 additions & 0 deletions
149
fingerprint_pro_server_api_sdk/models/identification_error.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,149 @@ | ||
# 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. This API can be used for data exports, decision-making, and data analysis scenarios. # 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 IdentificationError(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 = { | ||
'code': 'str', | ||
'message': 'str' | ||
} | ||
|
||
attribute_map = { | ||
'code': 'code', | ||
'message': 'message' | ||
} | ||
|
||
def __init__(self, code=None, message=None): # noqa: E501 | ||
"""IdentificationError - a model defined in Swagger""" # noqa: E501 | ||
self._code = None | ||
self._message = None | ||
self.discriminator = None | ||
self.code = code | ||
self.message = message | ||
|
||
@property | ||
def code(self): | ||
"""Gets the code of this IdentificationError. # noqa: E501 | ||
Error code: * `429 Too Many Requests` - the limit on secret API key requests per second has been exceeded * `Failed` - internal server error # noqa: E501 | ||
:return: The code of this IdentificationError. # noqa: E501 | ||
:rtype: str | ||
""" | ||
return self._code | ||
|
||
@code.setter | ||
def code(self, code): | ||
"""Sets the code of this IdentificationError. | ||
Error code: * `429 Too Many Requests` - the limit on secret API key requests per second has been exceeded * `Failed` - internal server error # noqa: E501 | ||
:param code: The code of this IdentificationError. # noqa: E501 | ||
:type: str | ||
""" | ||
if code is None: | ||
raise ValueError("Invalid value for `code`, must not be `None`") # noqa: E501 | ||
allowed_values = ["429 Too Many Requests", "Failed"] # noqa: E501 | ||
if (code not in allowed_values): | ||
raise ValueError( | ||
"Invalid value for `code` ({0}), must be one of {1}" # noqa: E501 | ||
.format(code, allowed_values) | ||
) | ||
|
||
self._code = code | ||
|
||
@property | ||
def message(self): | ||
"""Gets the message of this IdentificationError. # noqa: E501 | ||
:return: The message of this IdentificationError. # noqa: E501 | ||
:rtype: str | ||
""" | ||
return self._message | ||
|
||
@message.setter | ||
def message(self, message): | ||
"""Sets the message of this IdentificationError. | ||
:param message: The message of this IdentificationError. # noqa: E501 | ||
:type: str | ||
""" | ||
if message is None: | ||
raise ValueError("Invalid value for `message`, must not be `None`") # noqa: E501 | ||
|
||
self._message = message | ||
|
||
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(IdentificationError, 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, IdentificationError): | ||
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, IdentificationError): | ||
return True | ||
|
||
return self.to_dict() != other.to_dict() |
Oops, something went wrong.