type Image struct {
ID string `json:"id"`
Number uint32 `json:"number,omitempty"`
Format string `json:"format"`
Width int `json:"width,omitempty"`
Height int `json:"height,omitempty"`
Data []byte `json:"data,omitempty"`
}
type Placement struct {
ID uint32 `json:"id"`
ImageID string `json:"imageId"`
Row int `json:"row"`
Col int `json:"col"`
Rows int `json:"rows"`
Cols int `json:"cols"`
X int `json:"x,omitempty"`
Y int `json:"y,omitempty"`
Z int `json:"z,omitempty"`
}