-
Notifications
You must be signed in to change notification settings - Fork 143
Expand file tree
/
Copy patharticle_list.py
More file actions
39 lines (30 loc) · 1.1 KB
/
article_list.py
File metadata and controls
39 lines (30 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# This file was auto-generated by Fern from our API Definition.
import typing
import pydantic
from ..articles.types.article_list_item import ArticleListItem
from ..core.pydantic_utilities import IS_PYDANTIC_V2
from ..core.unchecked_base_model import UncheckedBaseModel
class ArticleList(UncheckedBaseModel):
"""
This will return a list of articles for the App.
"""
type: typing.Optional[typing.Literal["list"]] = pydantic.Field(default=None)
"""
The type of the object - `list`.
"""
pages: typing.Optional[typing.Any] = None
total_count: typing.Optional[int] = pydantic.Field(default=None)
"""
A count of the total number of articles.
"""
data: typing.Optional[typing.List[ArticleListItem]] = pydantic.Field(default=None)
"""
An array of Article objects
"""
if IS_PYDANTIC_V2:
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
else:
class Config:
frozen = True
smart_union = True
extra = pydantic.Extra.allow