Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 993 Bytes

File metadata and controls

35 lines (26 loc) · 993 Bytes

Log

Properties

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]

Example

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)

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