HuntPuzzlePatchData
public struct HuntPuzzlePatchData : Content
Used to modify a puzzle.
Optional fields in this are required fields in Puzzle;
if not nil, the value in the puzzle will be modified.
ExplicitNull fields in this are optional in Puzzle.
If absent in the JSON, not affected.
If present and null, will unset the field.
Required by: PATCH /api/v3/hunts/puzzle/:puzzleID
-
Declaration
Swift
var title: String?
-
Declaration
Swift
var body: String?
-
Declaration
Swift
var answer: String?
-
Declaration
Swift
var unlockTime: ExplicitNull<Date>
-
If present, any hints here will be added if nor already present, or updated. There is no way to delete an existing hint.
Declaration
Swift
var hints: [String : String]?