type MyJsonName struct {
Attachment struct {
Photo struct {
AccessKey string `json:"access_key"`
Aid int `json:"aid"`
Created int `json:"created"`
Height int `json:"height"`
OwnerID int `json:"owner_id"`
Pid int `json:"pid"`
Src string `json:"src"`
SrcBig string `json:"src_big"`
SrcSmall string `json:"src_small"`
SrcXbig string `json:"src_xbig"`
SrcXxbig string `json:"src_xxbig"`
Text string `json:"text"`
UserID int `json:"user_id"`
Width int `json:"width"`
} `json:"photo"`
Type string `json:"type"`
} `json:"attachment"`
Attachments []struct {
Photo struct {
AccessKey string `json:"access_key"`
Aid int `json:"aid"`
Created int `json:"created"`
Height int `json:"height"`
OwnerID int `json:"owner_id"`
Pid int `json:"pid"`
Src string `json:"src"`
SrcBig string `json:"src_big"`
SrcSmall string `json:"src_small"`
SrcXbig string `json:"src_xbig"`
SrcXxbig string `json:"src_xxbig"`
Text string `json:"text"`
UserID int `json:"user_id"`
Width int `json:"width"`
} `json:"photo"`
Type string `json:"type"`
} `json:"attachments"`
Comments struct {
Count int `json:"count"`
} `json:"comments"`
Date int `json:"date"`
FromID int `json:"from_id"`
ID int `json:"id"`
IsPinned int `json:"is_pinned"`
Likes struct {
Count int `json:"count"`
} `json:"likes"`
PostType string `json:"post_type"`
Reposts struct {
Count int `json:"count"`
} `json:"reposts"`
SignerID int `json:"signer_id"`
Text string `json:"text"`
ToID int `json:"to_id"`
}