# Types.DeleteResourcesInput

Input type describing a resource (file or folder) to delete.

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

Represents input for deleting resources with Client.deleteResource(). Each instance identifies one file or folder to remove.

## Fields

### Fields
| Parameter | Type | Required | Description |
|---|---|---|---|
| resourceIds | List&lt;String&gt; | required | The unique ID of the resource (file or folder) to be deleted. |
| resourceType | String | required | Valid Values: file or folder. |
| driveId | String | required | Required for Google Drive and SharePoint. Retrieve this from the Content Library tab in Salesforce using the "View Metadata" button. |

## Constructors

```apex
global DeleteResourcesInput(
  List<String> resourceIds,
  String resourceType,
  String driveId
)
```
