Name | Type | Description | Notes |
threat_score | int | | [optional] |
is_tor | bool | | [optional] |
is_proxy | bool | | [optional] |
proxy_type | str | | [optional] |
proxy_provider | str | | [optional] |
is_anonymous | bool | | [optional] |
is_known_attacker | bool | | [optional] |
is_spam | bool | | [optional] |
is_bot | bool | | [optional] |
is_cloud_provider | bool | | [optional] |
cloud_provider | str | | [optional] |
from ipgeolocation.models.security import Security # TODO update the JSON string below json = "{}" # create an instance of Security from a JSON string security_instance = Security.from_json(json) # print the JSON string representation of the object print(Security.to_json()) # convert the object into a dict security_dict = security_instance.to_dict() # create an instance of Security from a dict security_from_dict = Security.from_dict(security_dict)
[Back to Model list] [Back to API list] [Back to README]