-
Notifications
You must be signed in to change notification settings - Fork 143
Expand file tree
/
Copy patharticle.py
More file actions
25 lines (18 loc) · 849 Bytes
/
article.py
File metadata and controls
25 lines (18 loc) · 849 Bytes
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
# This file was auto-generated by Fern from our API Definition.
import typing
import pydantic
from ...core.pydantic_utilities import IS_PYDANTIC_V2
from ...types.article_statistics import ArticleStatistics
from .article_list_item import ArticleListItem
class Article(ArticleListItem):
"""
The Articles API is a central place to gather all information and take actions on your articles. Articles can live within collections and sections, or alternatively they can stand alone.
"""
statistics: typing.Optional[ArticleStatistics] = None
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