Skip to content

LogsPayload

Options controlling how transformation job logs are retrieved.

Properties

Name Type Description Notes
tail_lines int If set, returns only the most recent N lines of the log. Omit to retrieve the full log. [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]