> ## Documentation Index
> Fetch the complete documentation index at: https://openrouter.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# TimeRange

## Example Usage

```typescript theme={null}
import { TimeRange } from "@openrouter/sdk/models/operations";

let value: TimeRange = {
  end: new Date("2024-07-04T07:07:24.821Z"),
  start: new Date("2026-05-14T10:22:55.251Z"),
};
```

## Fields

| Field   | Type                                                                                          | Required             | Description |
| ------- | --------------------------------------------------------------------------------------------- | -------------------- | ----------- |
| `end`   | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy\_check\_mark: | N/A         |
| `start` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy\_check\_mark: | N/A         |
