1
0
mirror of https://github.com/dstotijn/go-notion.git synced 2025-06-27 00:41:07 +02:00

Fix type of column_list.children (#38)

This commit is contained in:
David Stotijn
2022-09-03 20:53:05 +02:00
committed by GitHub
parent 8c9d956f3d
commit 5545ade9a7

View File

@ -570,7 +570,7 @@ func (b EquationBlock) MarshalJSON() ([]byte, error) {
type ColumnListBlock struct {
baseBlock
Children []Block `json:"children,omitempty"`
Children []ColumnBlock `json:"children,omitempty"`
}
// MarshalJSON implements json.Marshaler.