main
1# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
3from typing_extensions import Literal
4
5from ..._models import BaseModel
6
7__all__ = ["UploadPart"]
8
9
10class UploadPart(BaseModel):
11 id: str
12 """The upload Part unique identifier, which can be referenced in API endpoints."""
13
14 created_at: int
15 """The Unix timestamp (in seconds) for when the Part was created."""
16
17 object: Literal["upload.part"]
18 """The object type, which is always `upload.part`."""
19
20 upload_id: str
21 """The ID of the Upload object that this Part was added to."""