Changeset View
Changeset View
Standalone View
Standalone View
comments/typed_templates.py
| Show All 10 Lines | class Comments: | ||||
| number_of_comments: int | number_of_comments: int | ||||
| comment_trees: List[CommentTree] | comment_trees: List[CommentTree] | ||||
| profile_image_url: str | profile_image_url: str | ||||
| @dc.dataclass | @dc.dataclass | ||||
| class CommentTree: | class CommentTree: | ||||
| id: int | id: int | ||||
| anchor: str | |||||
| date: datetime.datetime | date: datetime.datetime | ||||
| replies: List[CommentTree] | replies: List[CommentTree] | ||||
| is_archived: bool | is_archived: bool | ||||
| is_top_level: bool | is_top_level: bool | ||||
| full_name: str | full_name: str | ||||
| profile_image_url: str | profile_image_url: str | ||||
| message: str | message: str | ||||
| message_html: str | message_html: str | ||||
| Show All 31 Lines | |||||