mirror of
https://github.com/dstotijn/go-notion.git
synced 2024-11-28 08:58:51 +02:00
18 lines
281 B
Go
18 lines
281 B
Go
package notion
|
|
|
|
type FileFile struct {
|
|
URL string `json:"url"`
|
|
ExpiryTime DateTime `json:"expiry_time"`
|
|
}
|
|
|
|
type FileExternal struct {
|
|
URL string `json:"url"`
|
|
}
|
|
|
|
type FileType string
|
|
|
|
const (
|
|
FileTypeFile FileType = "file"
|
|
FileTypeExternal FileType = "external"
|
|
)
|