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

# Client

> The Discord.JS Client object.

```js theme={null}
new DBD.Dashboard({
  client: {
    id: String,
    secret: String,
  },
});
```

You can get those details from the [Discord Developer Portal](https://discord.com/developers/applications).

## Example Usage

```javascript theme={null}
new DBD.Dashboard({
  client: {
    id: "clientID",
    secret: "clientSecret",
  },
});
```

## Props

<ParamField path="id" type="string" required>
  The client ID.
</ParamField>

<ParamField path="secret" type="string" required>
  The client secret.
</ParamField>
