Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.04 KB

File metadata and controls

32 lines (23 loc) · 1.04 KB

LogIpAddress

Properties

Name Type Description Notes
geographical_context LogGeographicalContext [optional]
ip str [optional] [readonly]
source str [optional] [readonly]
version str [optional] [readonly]

Example

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)

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