Skip to content

Commit

Permalink
fix: align Query struct
Browse files Browse the repository at this point in the history
  • Loading branch information
WoozyMasta committed Jan 12, 2025
1 parent 44cc57d commit 01eb7c2
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions filedetails/get.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,12 @@ import (

// Structure describing the parameters of a request to IPublishedFileService/GetDetails/v1/
type Query struct {
key string // Access API key
concurrent int // Max items per chunk
chunkMax int // Concurrent requests

key string `` // Access API key
Language string `json:"language,omitempty"` // Specifies the localized text to return. Defaults to English. //* ELanguage
DesiredRevision string `json:"desired_revision,omitempty"` // Return the data for the specified revision. //* EPublishedFileRevision
PublishedFileIDs []uint64 `json:"publishedfileids"` // Set of published file Ids to retrieve details for.
concurrent int `` // Max items per chunk (internal)
chunkMax int `` // Concurrent requests (internal)
AppID uint64 `json:"appid,omitempty"` // Application ID
ReturnPlaytimeStats uint32 `json:"return_playtime_stats,omitempty"` // Return playtime stats for the specified number of days before today.
IncludeTags bool `json:"includetags,omitempty"` // If true, return tag information in the returned details.
Expand Down

0 comments on commit 01eb7c2

Please sign in to comment.