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
AttributeTypeDescription
idstrThe unique identifier of the file.
namestrThe name of the file.
statusFileStatusThe current status of the file, using the FileStatus enum.
created_atdatetimeThe timestamp when the file record was created.