steamsalty/steam/types.go
2024-12-20 02:09:07 +01:00

9 lines
250 B
Go

package steam
type CommentResponse struct {
Success bool `json:"success"`
Start int `json:"start"`
TotalCount int `json:"total_count"`
CommentsHTML string `json:"comments_html"`
Timelastpost int `json:"timelastpost"`
}