# Types.CreateDataroomInput

Input describing a dataroom to create.

> Kind: Apex type · Updated: 2026-07-01

Represents input for creating a dataroom. One entry per dataroom is passed to Client.createDatarooms().

## Fields

### Fields
| Parameter | Type | Required | Description |
|---|---|---|---|
| name | String | required | Name of the dataroom. |
| description | String | required | A description of the dataroom that will be visible to customers. |

## Constructors

```apex
global CreateDataroomInput(String name, String description)
```

## Example

```apex
Types.CreateDataroomInput input =
  new Types.CreateDataroomInput('Acme Deal Room', 'Documents shared with Acme');
```
