# IssueListParams

> **Class** in `langsmith`

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

## Signature

```python
IssueListParams()
```

## Extends

- `TypedDict`

## Constructors

```python
__init__(
    limit: int,
    offset: int,
    session_id: str,
    session_name: str,
    severity: Literal[0, 1, 2, 3],
    sort_by: Literal['created_at', 'updated_at', 'severity'],
    status: Literal['open', 'completed', 'ignored'],
    tag: str,
    updated_at: str,
)
```

| Name | Type |
|------|------|
| `limit` | `int` |
| `offset` | `int` |
| `session_id` | `str` |
| `session_name` | `str` |
| `severity` | `Literal[0, 1, 2, 3]` |
| `sort_by` | `Literal['created_at', 'updated_at', 'severity']` |
| `status` | `Literal['open', 'completed', 'ignored']` |
| `tag` | `str` |
| `updated_at` | `str` |


## Properties

- `limit`
- `offset`
- `session_id`
- `session_name`
- `severity`
- `sort_by`
- `status`
- `tag`
- `updated_at`

---

[View source on GitHub](https://github.com/langchain-ai/langsmith-sdk/blob/687fc8d527a28504432f52bd08c75f2894c209fe/python/langsmith/_openapi_client/types/issue_list_params.py#L10)