GoodMem
ReferenceClient SDKsPython SDKModels

ProcessingHistory Model

ProcessingHistory Model documentation for Python SDK

Background job execution history associated with a memory

Properties

NameTypeDescriptionNotes
latest_jobBackgroundJobSummary[optional]
attemptsList[BackgroundJobAttempt]Attempt-level telemetry captured for the latest job[optional]

Example

from goodmem_client.models.processing_history import ProcessingHistory

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

# convert the object into a dict
processing_history_dict = processing_history_instance.to_dict()
# create an instance of ProcessingHistory from a dict
processing_history_from_dict = ProcessingHistory.from_dict(processing_history_dict)

↑ Back to Python SDK ↑ Back to Python SDK ↑ Back to Python SDK

On this page