| Name | Type | Description | Notes |
|---|---|---|---|
| geographical_context | LogGeographicalContext | [optional] | |
| ip | str | [optional] [readonly] | |
| source | str | [optional] [readonly] | |
| version | str | [optional] [readonly] |
from okta.models.log_ip_address import LogIpAddress
# TODO update the JSON string below
json = "{}"
# create an instance of LogIpAddress from a JSON string
log_ip_address_instance = LogIpAddress.from_json(json)
# print the JSON string representation of the object
print(LogIpAddress.to_json())
# convert the object into a dict
log_ip_address_dict = log_ip_address_instance.to_dict()
# create an instance of LogIpAddress from a dict
log_ip_address_from_dict = LogIpAddress.from_dict(log_ip_address_dict)