HuntPuzzleDetailData
public struct HuntPuzzleDetailData : Content
A single puzzle, including (if you’re logged in) all of your callin attempts on it. Returned by:
GET /api/v2/hunts/puzzles/:puzzleID
-
Declaration
Swift
var huntID: UUID
-
Declaration
Swift
var huntTitle: String
-
Declaration
Swift
var puzzleID: UUID
-
Declaration
Swift
var title: String
-
Declaration
Swift
var body: String
-
Will be sorted in ascending order by creationTime The puzzle is solved if any of these have “correct” set. It should be the last one, since we won’t let you call in any more once you solve the puzzle.
Declaration
Swift
var callIns: [HuntPuzzleCallInResultData]
-
Declaration
Swift
init(_ puzzle: Puzzle, _ callIns: [PuzzleCallIn]) throws