HuntData
public struct HuntData : Content
Used to return a single hunt in as much detail as the caller can see. For example, it only includes the currently unlocked puzzles, and puzzles only have their answer field set if the user is logged in and has solved them. Returned by:
GET /api/v3/hunts/:huntID
GET /api/v2/hunts/:huntID/admin
(only usable by Twitarr team and above)
-
Declaration
Swift
var huntID: UUID
-
Declaration
Swift
var title: String
-
Declaration
Swift
var description: String
-
For solvers, only contains puzzles which are unlocked
Declaration
Swift
var puzzles: [HuntPuzzleData]
-
If any puzzles are locked, the time of the next one to unlock.
Declaration
Swift
var nextUnlockTime: Date?
-
-