# RunQueryParams

> **Class** in `langsmith`

📖 [View in docs](https://reference.langchain.com/python/langsmith/_openapi_client/types/run_query_params/RunQueryParams)

## Signature

```python
RunQueryParams()
```

## Extends

- `TypedDict`

## Constructors

```python
__init__(
    cursor: str,
    filter: str,
    has_error: bool,
    ids: SequenceNotStr[str],
    is_root: bool,
    max_start_time: Annotated[Union[str, datetime], PropertyInfo(format='iso8601')],
    min_start_time: Annotated[Union[str, datetime], PropertyInfo(format='iso8601')],
    page_size: int,
    project_ids: SequenceNotStr[str],
    reference_dataset_id: str,
    reference_examples: SequenceNotStr[str],
    run_type: RunType,
    selects: List[RunSelectField],
    trace_filter: str,
    trace_id: str,
    tree_filter: str,
    accept: Annotated[str, PropertyInfo(alias='Accept')],
)
```

| Name | Type |
|------|------|
| `cursor` | `str` |
| `filter` | `str` |
| `has_error` | `bool` |
| `ids` | `SequenceNotStr[str]` |
| `is_root` | `bool` |
| `max_start_time` | `Annotated[Union[str, datetime], PropertyInfo(format='iso8601')]` |
| `min_start_time` | `Annotated[Union[str, datetime], PropertyInfo(format='iso8601')]` |
| `page_size` | `int` |
| `project_ids` | `SequenceNotStr[str]` |
| `reference_dataset_id` | `str` |
| `reference_examples` | `SequenceNotStr[str]` |
| `run_type` | `RunType` |
| `selects` | `List[RunSelectField]` |
| `trace_filter` | `str` |
| `trace_id` | `str` |
| `tree_filter` | `str` |
| `accept` | `Annotated[str, PropertyInfo(alias='Accept')]` |


## Properties

- `cursor`
- `filter`
- `has_error`
- `ids`
- `is_root`
- `max_start_time`
- `min_start_time`
- `page_size`
- `project_ids`
- `reference_dataset_id`
- `reference_examples`
- `run_type`
- `selects`
- `trace_filter`
- `trace_id`
- `tree_filter`
- `accept`

---

[View source on GitHub](https://github.com/langchain-ai/langsmith-sdk/blob/33995e14a84c53b65b82482b3d2fe0624b379bda/python/langsmith/_openapi_client/types/run_query_params.py#L17)