Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.21 KB

File metadata and controls

33 lines (24 loc) · 1.21 KB

IpReputationResponse

Properties

Name Type Description Notes
ip str [optional]
location IpLocation [optional]
network IpSecurityNetwork [optional]
asn IpSecurityAsn [optional]
security IpSecurity [optional]

Example

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)

[Back to Model list] [Back to API list] [Back to README]