04_Block - fasteiner/Notion GitHub Wiki
Block: Block
classDiagram
class notion_block {
$object = "block"
$id = $null
[notion_parent] $parent = $null
$children
[string] $created_time
[notion_user] $created_by
[string] $last_edited_time
[notion_user] $last_edited_by
[bool] $archived = $false
[bool] $in_trash = $false
[bool] $has_children = $false
addChild()
ConvertFromObject()
}
Related Classes
Derived blocks
Other block types are inherited from the generic block.
- Bookmark
- Breadcrumb
- Bulleted_List_Item
- Callout
- Child_Database
- Child_Page
- Code
- Column
- Column_List
- Divider
- Embed
- Equation
- Heading
- Image
- Link_Preview
- Numbered_List_Item
- Paragraph
- File_block
- Quote
- Synced_Block
- Table
- Table_Of_Contents
- To_do
- Toggle
- Video
Within these blocks a inheritance will only visible as class element without all properties.
classDiagram
class notion_block:::styleClass