| Name | Type | Description | Notes |
|---|---|---|---|
| ip | str | [optional] | |
| location | IpLocation | [optional] | |
| network | IpSecurityNetwork | [optional] | |
| asn | IpSecurityAsn | [optional] | |
| security | IpSecurity | [optional] |
from whoisfreaks.models.ip_reputation_response import IpReputationResponse
# TODO update the JSON string below
json = "{}"
# create an instance of IpReputationResponse from a JSON string
ip_reputation_response_instance = IpReputationResponse.from_json(json)
# print the JSON string representation of the object
print(IpReputationResponse.to_json())
# convert the object into a dict
ip_reputation_response_dict = ip_reputation_response_instance.to_dict()
# create an instance of IpReputationResponse from a dict
ip_reputation_response_from_dict = IpReputationResponse.from_dict(ip_reputation_response_dict)