mirror of
https://github.com/dstotijn/go-notion.git
synced 2025-06-08 23:46:12 +02:00
feat: add table block support (#24)
This commit is contained in:
parent
97f740c22e
commit
63149ba664
15
block.go
15
block.go
@ -41,6 +41,8 @@ type Block struct {
|
|||||||
Breadcrumb *Breadcrumb `json:"breadcrumb,omitempty"`
|
Breadcrumb *Breadcrumb `json:"breadcrumb,omitempty"`
|
||||||
ColumnList *ColumnList `json:"column_list,omitempty"`
|
ColumnList *ColumnList `json:"column_list,omitempty"`
|
||||||
Column *Column `json:"column,omitempty"`
|
Column *Column `json:"column,omitempty"`
|
||||||
|
Table *Table `json:"table,omitempty"`
|
||||||
|
TableRow *TableRow `json:"table_row,omitempty"`
|
||||||
LinkPreview *LinkPreview `json:"link_preview,omitempty"`
|
LinkPreview *LinkPreview `json:"link_preview,omitempty"`
|
||||||
LinkToPage *LinkToPage `json:"link_to_page,omitempty"`
|
LinkToPage *LinkToPage `json:"link_to_page,omitempty"`
|
||||||
SyncedBlock *SyncedBlock `json:"synced_block,omitempty"`
|
SyncedBlock *SyncedBlock `json:"synced_block,omitempty"`
|
||||||
@ -104,6 +106,17 @@ type Column struct {
|
|||||||
Children []Block `json:"children,omitempty"`
|
Children []Block `json:"children,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type Table struct {
|
||||||
|
TableWidth int `json:"table_width"`
|
||||||
|
HasColumnHeader bool `json:"has_column_header"`
|
||||||
|
HasRowHeader bool `json:"has_row_header"`
|
||||||
|
Children []Block `json:"children,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type TableRow struct {
|
||||||
|
Cells [][]RichText `json:"cells"`
|
||||||
|
}
|
||||||
|
|
||||||
type LinkToPage struct {
|
type LinkToPage struct {
|
||||||
Type LinkToPageType `json:"type"`
|
Type LinkToPageType `json:"type"`
|
||||||
|
|
||||||
@ -166,6 +179,8 @@ const (
|
|||||||
BlockTypeBreadCrumb BlockType = "breadcrumb"
|
BlockTypeBreadCrumb BlockType = "breadcrumb"
|
||||||
BlockTypeColumnList BlockType = "column_list"
|
BlockTypeColumnList BlockType = "column_list"
|
||||||
BlockTypeColumn BlockType = "column"
|
BlockTypeColumn BlockType = "column"
|
||||||
|
BlockTypeTable BlockType = "table"
|
||||||
|
BlockTypeTableRow BlockType = "table_row"
|
||||||
BlockTypeLinkPreview BlockType = "link_preview"
|
BlockTypeLinkPreview BlockType = "link_preview"
|
||||||
BlockTypeLinkToPage BlockType = "link_to_page"
|
BlockTypeLinkToPage BlockType = "link_to_page"
|
||||||
BlockTypeSyncedBlock BlockType = "synced_block"
|
BlockTypeSyncedBlock BlockType = "synced_block"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user