type Image struct {
BottomRightX int `json:"bottom_right_x"`
BottomRightY int `json:"bottom_right_y"`
ID string `json:"id"`
ImageBase64 string `json:"image_base64"`
TopLeftX int `json:"top_left_x"`
TopLeftY int `json:"top_left_y"`
}
type PageView struct {
Dimensions struct {
DPI int `json:"dpi"`
Height int `json:"height"`
Width int `json:"width"`
} `json:"dimensions"`
Images []Image `json:"images"`
Index int `json:"index"`
Markdown string `json:"markdown"`
}