-
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.
fix: update OpenAPI Schema with
asn
and dataCenter
signals
- Loading branch information
Showing
17 changed files
with
687 additions
and
37 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,11 @@ | ||
# ASN | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**asn** | **str** | | | ||
**network** | **str** | | | ||
**name** | **str** | | [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 @@ | ||
# DataCenter | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**result** | **bool** | | | ||
**name** | **str** | | [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
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,167 @@ | ||
# 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 ASN(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 = { | ||
'asn': 'str', | ||
'network': 'str', | ||
'name': 'str' | ||
} | ||
|
||
attribute_map = { | ||
'asn': 'asn', | ||
'network': 'network', | ||
'name': 'name' | ||
} | ||
|
||
def __init__(self, asn=None, network=None, name=None): # noqa: E501 | ||
"""ASN - a model defined in Swagger""" # noqa: E501 | ||
self._asn = None | ||
self._network = None | ||
self._name = None | ||
self.discriminator = None | ||
self.asn = asn | ||
self.network = network | ||
if name is not None: | ||
self.name = name | ||
|
||
@property | ||
def asn(self): | ||
"""Gets the asn of this ASN. # noqa: E501 | ||
:return: The asn of this ASN. # noqa: E501 | ||
:rtype: str | ||
""" | ||
return self._asn | ||
|
||
@asn.setter | ||
def asn(self, asn): | ||
"""Sets the asn of this ASN. | ||
:param asn: The asn of this ASN. # noqa: E501 | ||
:type: str | ||
""" | ||
if asn is None: | ||
raise ValueError("Invalid value for `asn`, must not be `None`") # noqa: E501 | ||
|
||
self._asn = asn | ||
|
||
@property | ||
def network(self): | ||
"""Gets the network of this ASN. # noqa: E501 | ||
:return: The network of this ASN. # noqa: E501 | ||
:rtype: str | ||
""" | ||
return self._network | ||
|
||
@network.setter | ||
def network(self, network): | ||
"""Sets the network of this ASN. | ||
:param network: The network of this ASN. # noqa: E501 | ||
:type: str | ||
""" | ||
if network is None: | ||
raise ValueError("Invalid value for `network`, must not be `None`") # noqa: E501 | ||
|
||
self._network = network | ||
|
||
@property | ||
def name(self): | ||
"""Gets the name of this ASN. # noqa: E501 | ||
:return: The name of this ASN. # noqa: E501 | ||
:rtype: str | ||
""" | ||
return self._name | ||
|
||
@name.setter | ||
def name(self, name): | ||
"""Sets the name of this ASN. | ||
:param name: The name of this ASN. # noqa: E501 | ||
:type: str | ||
""" | ||
|
||
self._name = name | ||
|
||
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(ASN, 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, ASN): | ||
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, ASN): | ||
return True | ||
|
||
return self.to_dict() != other.to_dict() |
Oops, something went wrong.