---
title: WorkspaceInfo
sidebar_label: WorkspaceInfo
sidebar_position: 9
---

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

<!-- Generated by scripts/generate_sdk_reference.py. Do not edit directly. -->

# WorkspaceInfo

```python
from lium.sdk import WorkspaceInfo
```

Defined in `lium.sdk.models`.

A workspace as the API describes it (lium-platform DAH-2975 / DAH-3030).

```python
WorkspaceInfo(
    id: str,
    name: str,
    role: str,
    billing_owner_user_id: str,
    pending_billing_owner_user_id: Optional[str] = None,
    created_at: Optional[str] = None,
    is_personal: Optional[bool] = None
)
```

## Fields

| Name | Type | Default |
| --- | --- | --- |
| `id` | str |  |
| `name` | str |  |
| `role` | str |  |
| `billing_owner_user_id` | str |  |
| `pending_billing_owner_user_id` | Optional[str] | `None` |
| `created_at` | Optional[str] | `None` |
| `is_personal` | Optional[bool] | `None` |

## Methods

| Method | Description |
| --- | --- |
| [`matches`](#matches) | Whether nameorid names this workspace: its id, or its name (case-insensitive). |

### matches

```python
def matches(name_or_id: str) -> bool:
```

Whether ``name_or_id`` names this workspace: its id, or its name (case-insensitive).
