ExpiresAfter
The expiration policy for a vector store.
Example Usage
typescript
import { ExpiresAfter } from "@meetkai/mka1/models/components";
let value: ExpiresAfter = {
anchor: "last_active_at",
days: 144262,
};Fields
| Field | Type | Required | Description |
|---|---|---|---|
anchor | "last_active_at" | ✔️ | Anchor timestamp after which the expiration policy applies. Supported anchors: last_active_at. |
days | number | ✔️ | The number of days after the anchor time that the vector store will expire. |