diff --git a/block.go b/block.go index 872a65d..2b6d61d 100644 --- a/block.go +++ b/block.go @@ -95,7 +95,8 @@ type ParagraphBlock struct { LastEditedTime *time.Time `json:"last_edited_time,omitempty"` HasChildren bool `json:"has_children,omitempty"` Paragraph struct { - Text Paragraph `json:"text"` + Text Paragraph `json:"text"` + Children []Block `json:"children"` } `json:"paragraph"` }