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__ = ["Model"]
8
9
10class Model(BaseModel):
11 id: str
12 """The model identifier, which can be referenced in the API endpoints."""
13
14 created: int
15 """The Unix timestamp (in seconds) when the model was created."""
16
17 object: Literal["model"]
18 """The object type, which is always "model"."""
19
20 owned_by: str
21 """The organization that owns the model."""