Step Quiz Hints Clicked Hyperskill Analytic Event
class StepQuizHintsClickedHyperskillAnalyticEvent(val route: HyperskillAnalyticRoute, val target: HyperskillAnalyticTarget, val commentId: Long? = null) : HyperskillAnalyticEvent
Represents a common click analytic event for the StepQuizHintsFeature.
Click on the reaction "Yes" button:
{
"route": "/learn/step/1",
"action": "click",
"part": "step_hints",
"target": "yes",
"context":
{
"comment_id": 1
}
}
Content copied to clipboard
Click on the reaction "No" button:
{
"route": "/learn/step/1",
"action": "click",
"part": "step_hints",
"target": "no",
"context":
{
"comment_id": 1
}
}
Content copied to clipboard
Click on the "See hint" button:
{
"route": "/learn/step/1",
"action": "click",
"part": "step_hints",
"target": "see_hint"
}
Content copied to clipboard
Click on the "See next hint" button:
{
"route": "/learn/step/1",
"action": "click",
"part": "step_hints",
"target": "see_next_hint"
}
Content copied to clipboard
Click on the "Report" button:
{
"route": "/learn/step/1",
"action": "click",
"part": "step_hints",
"target": "report",
"context":
{
"comment_id": 1
}
}
Content copied to clipboard
See also
Constructors
Link copied to clipboard
constructor(route: HyperskillAnalyticRoute, target: HyperskillAnalyticTarget, commentId: Long? = null)
Properties
Link copied to clipboard
Event action, for example: click
, view
.
Link copied to clipboard
Event part where action occurred, for example: main
, step_hints
.
Link copied to clipboard
Event route path, for example: /home
, /onboarding
.
Link copied to clipboard
Link copied to clipboard
Target that triggered event, for example: send
, refresh
.