| Name | Type | Description | Notes |
|---|---|---|---|
| type | str | [optional] | |
| ip | str | [optional] | |
| device_type | str | [optional] | |
| continent_code | str | [optional] | |
| country_code | str | [optional] | |
| city_name | str | [optional] | |
| datetime | datetime | [optional] |
from openapi_client.models.log import Log
# TODO update the JSON string below
json = "{}"
# create an instance of Log from a JSON string
log_instance = Log.from_json(json)
# print the JSON string representation of the object
print(Log.to_json())
# convert the object into a dict
log_dict = log_instance.to_dict()
# create an instance of Log from a dict
log_from_dict = Log.from_dict(log_dict)