# Types.AddDataroomChildrenInput

Input describing a dataroom and the child resources to add to it.

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

Represents input for adding one or more resources (files/folders) to a dataroom. Consumed by Client.addToDataroom(). Each entry pairs a target dataroom id with a list of Types.DataroomChild records.

## Fields

### Fields
| Parameter | Type | Required | Description |
|---|---|---|---|
| dataroomId | String | required | Id of the dataroom to add children to. |
| children | List&lt;<a href="#/apex-type-dataroom-child">DataroomChild</a>&gt; | required | The child resources to add. See Types.DataroomChild. |

## Constructors

```apex
global AddDataroomChildrenInput(
  String dataroomId,
  List<DataroomChild> children
)
```
