OpenAIFileDeleted
The OpenAIFileDeleted class represents the deletion status of a file in the OpenAI API.
Properties
| Property Name | Type | Description |
|---|---|---|
id | Text | The ID of the deleted file (e.g., "file-abc123"). |
deleted | Boolean | Whether the file was successfully deleted. True if deletion succeeded. |
object | Text | The object type, which is always "file". |
Example Response
{
"id": "file-abc123",
"object": "file",
"deleted": true
}