# ListThreadsItem

> **Class** in `langsmith`

📖 [View in docs](https://reference.langchain.com/python/langsmith/client/ListThreadsItem)

Item returned by :meth:`Client.list_threads`.

## Signature

```python
ListThreadsItem()
```

## Extends

- `TypedDict`

## Constructors

```python
__init__(
    thread_id: str,
    runs: list[ls_schemas.Run],
    count: int,
    min_start_time: Optional[str],
    max_start_time: Optional[str],
)
```

| Name | Type |
|------|------|
| `thread_id` | `str` |
| `runs` | `list[ls_schemas.Run]` |
| `count` | `int` |
| `min_start_time` | `Optional[str]` |
| `max_start_time` | `Optional[str]` |


## Properties

- `thread_id`
- `runs`
- `count`
- `min_start_time`
- `max_start_time`

---

[View source on GitHub](https://github.com/langchain-ai/langsmith-sdk/blob/19dc497a3d89638e4cc35db72ea1c29cad35cbbf/python/langsmith/client.py#L673)