preorder/orders/types.go
2024-06-19 23:04:59 -04:00

12 lines
222 B
Go

package orders
type GoogleBooksResponse struct {
Items []struct {
VolumeInfo struct {
ImageLinks struct {
Thumbnail string `json:"thumbnail"`
} `json:"imageLinks"`
} `json:"volumeInfo"`
} `json:"items"`
}