A result record from the platform's gradebook.
Results are read-only — the platform provides them via the result service. Each result represents the current grade for a specific line item and user.
When result_maximum is nil, consumers should treat it as 1
per the spec default.
Examples
{:ok, result} = Ltix.GradeService.Result.from_json(%{
"userId" => "5323497",
"resultScore" => 0.83,
"resultMaximum" => 1
})
result.result_score
#=> 0.83
Summary
Functions
Parse a result from a decoded JSON map.