Versions in this module Expand all Collapse all v1 v1.1.0 May 5, 2026 v1.0.0 May 3, 2026 Changes in this version + type Company struct + ID int32 + Name string + type CreateGameRequest struct + Developer string + GenresIDs []int32 + LogoURL string + Name string + PlatformsIDs []int32 + ReleaseDate string + Screenshots []string + Summary string + Websites []string + func (r *CreateGameRequest) Sanitize() + func (r *CreateGameRequest) ValidateWith(v *validation.Validator) (bool, []web.FieldError) + type CreateRatingRequest struct + Rating uint8 + func (r *CreateRatingRequest) ValidateWith(v *validation.Validator) (bool, []web.FieldError) + type GameResponse struct + Developers []Company + Genres []Genre + ID int32 + LogoURL string + Name string + Platforms []Platform + Publishers []Company + Rating float64 + ReleaseDate string + Screenshots []string + Slug string + Summary string + Websites []string + type GamesResponse struct + Count uint64 + Games []GameResponse + type Genre struct + ID int32 + Name string + type GetGamesQueryParams struct + DeveloperID int32 + GenreID int32 + Name string + OrderBy string + Page uint32 + PageSize uint32 + PublisherID int32 + type GetUserRatingsRequest struct + GameIDs []int32 + func (r *GetUserRatingsRequest) ValidateWith(v *validation.Validator) (bool, []web.FieldError) + type IDResponse struct + ID int32 + type ModerationItem struct + CreatedAt string + Details string + ID int32 + Status string + UpdatedAt string + type Platform struct + Abbreviation string + ID int32 + Name string + type RatingResponse struct + GameID int32 + Rating uint8 + type UpdateGameRequest struct + Developer *string + GenresIDs *[]int32 + LogoURL *string + Name *string + PlatformsIDs *[]int32 + ReleaseDate *string + Screenshots *[]string + Summary *string + Websites *[]string + func (r *UpdateGameRequest) Sanitize() + func (r *UpdateGameRequest) ValidateWith(v *validation.Validator) (bool, []web.FieldError) + type UploadImagesResponse struct + Files []UploadedFileInfo + type UploadedFileInfo struct + FileID string + FileName string + FileURL string + Type string