CachedOutput
This class represents a cached output entry, storing information such as a unique key, the URI of the output, and associated metadata. It tracks creation, last update, and update timestamps for managing cached data.
Attributes
| Attribute | Type | Description |
|---|---|---|
| Key | string | Stores a string representing the unique identifier for the cached output. |
| OutputURI | string | Stores a string representing the URI where the cached output can be accessed. |
| Metadata | []byte | Stores a byte array containing additional metadata associated with the cached output. |
| LastUpdated | time.Time | Stores a time.Time value indicating the last time the cached output was updated. |
| CreatedAt | time.Time | Stores a time.Time value indicating when the cached output was initially created. |
| UpdatedAt | time.Time | Stores a time.Time value indicating the most recent time the cached output was modified. |