# RunContext

> **Class** in `langchain_google_community`

📖 [View in docs](https://reference.langchain.com/python/langchain-google-community/callbacks/bigquery_callback/RunContext)

Context information for a single run/operation.

## Signature

```python
RunContext(
    self,
    run_id: str,
    name: str,
    parent_run_id: Optional[str] = None,
    metadata: Dict[str, Any] = dict(),
)
```

## Constructors

```python
__init__(
    self,
    run_id: str,
    name: str,
    parent_run_id: Optional[str] = None,
    metadata: Dict[str, Any] = dict(),
) -> None
```

| Name | Type |
|------|------|
| `run_id` | `str` |
| `name` | `str` |
| `parent_run_id` | `Optional[str]` |
| `metadata` | `Dict[str, Any]` |


## Properties

- `run_id`
- `name`
- `parent_run_id`
- `metadata`

---

[View source on GitHub](https://github.com/langchain-ai/langchain-google/blob/4519f3c4b7fb2bb93f13ca48d35c423b6afd3b03/libs/community/langchain_google_community/callbacks/bigquery_callback.py#L371)