Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 911 Bytes

LogsInner.md

File metadata and controls

31 lines (22 loc) · 911 Bytes

LogsInner

Properties

Name Type Description Notes
time datetime
level LogsInnerLevel
message str

Example

from waylay.services.rules.models.logs_inner import LogsInner

# TODO update the JSON string below
json = "{}"
# create an instance of LogsInner from a JSON string
logs_inner_instance = LogsInner.from_json(json)
# print the JSON string representation of the object
print LogsInner.to_json()

# convert the object into a dict
logs_inner_dict = logs_inner_instance.to_dict()
# create an instance of LogsInner from a dict
logs_inner_form_dict = logs_inner.from_dict(logs_inner_dict)

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