HuntPuzzleCallInResultData

public struct HuntPuzzleCallInResultData : Content
  • Declaration

    Swift

    var creationTime: Date
  • What the user called in, without normalization

    Declaration

    Swift

    var rawSubmission: String
  • If the callin was correct, this will be the canonical form of the answer. (The answer checker ignores case and spacing.)

    Declaration

    Swift

    var correct: String?
  • If the answer wasn’t correct but was something we thought you might call in, like a partial result, an instruction, or a request for a hint, this will be a nudge in the right direction.

    Declaration

    Swift

    var hint: String?
  • Declaration

    Swift

    init(_ callIn: PuzzleCallIn, _ puzzle: Puzzle)