-
Notifications
You must be signed in to change notification settings - Fork 143
Expand file tree
/
Copy patharticle_content.py
More file actions
68 lines (53 loc) · 1.76 KB
/
article_content.py
File metadata and controls
68 lines (53 loc) · 1.76 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# This file was auto-generated by Fern from our API Definition.
import typing
import pydantic
from ..core.pydantic_utilities import IS_PYDANTIC_V2
from ..core.unchecked_base_model import UncheckedBaseModel
from .article_content_state import ArticleContentState
class ArticleContent(UncheckedBaseModel):
"""
The Content of an Article.
"""
type: typing.Optional[typing.Literal["article_content"]] = pydantic.Field(default=None)
"""
The type of object - `article_content` .
"""
title: typing.Optional[str] = pydantic.Field(default=None)
"""
The title of the article.
"""
description: typing.Optional[str] = pydantic.Field(default=None)
"""
The description of the article.
"""
body: typing.Optional[str] = pydantic.Field(default=None)
"""
The body of the article.
"""
author_id: typing.Optional[int] = pydantic.Field(default=None)
"""
The ID of the author of the article.
"""
state: typing.Optional[ArticleContentState] = pydantic.Field(default=None)
"""
Whether the article is `published` or is a `draft` .
"""
created_at: typing.Optional[int] = pydantic.Field(default=None)
"""
The time when the article was created (seconds).
"""
updated_at: typing.Optional[int] = pydantic.Field(default=None)
"""
The time when the article was last updated (seconds).
"""
url: typing.Optional[str] = pydantic.Field(default=None)
"""
The URL of the article.
"""
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