Skip to content

LogsPayload

Properties

Name Type Description Notes
var_schema str A URL to the JSON Schema for this object. [optional] [readonly]
tail_lines int [optional]

Example

from odm_api.models.logs_payload import LogsPayload

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

# convert the object into a dict
logs_payload_dict = logs_payload_instance.to_dict()
# create an instance of LogsPayload from a dict
logs_payload_from_dict = LogsPayload.from_dict(logs_payload_dict)
[Back to Model list] [Back to API list] [Back to README]