1
0
mirror of https://github.com/dstotijn/go-notion.git synced 2025-11-27 22:18:23 +02:00

Add time_zone field to date prop type

This commit is contained in:
David Stotijn
2021-12-22 14:29:37 +01:00
parent 1284493f68
commit a14508d7c8

View File

@@ -35,8 +35,9 @@ type Mention struct {
}
type Date struct {
Start DateTime `json:"start"`
End *DateTime `json:"end,omitempty"`
Start DateTime `json:"start"`
End *DateTime `json:"end,omitempty"`
TimeZone *string `json:"time_zone,omitempty"`
}
type LinkPreview struct {