04_Block - fasteiner/Notion GitHub Wiki

Block: Block

API Reference

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.

Within these blocks a inheritance will only visible as class element without all properties.

classDiagram
    class notion_block:::styleClass