Models
File
The File model represents a file object returned by the API.
class File(BaseModel):
id: str
name: str
status: FileStatus
created_at: datetime| Attribute | Type | Description |
|---|---|---|
id | str | The unique identifier of the file. |
name | str | The name of the file. |
status | FileStatus | The current status of the file, using the FileStatus enum. |
created_at | datetime | The timestamp when the file record was created. |