in amazon_transcribe/deserialize.py [0:0]
def _parse_result(self, current_node: Any) -> Result:
alternatives = self._parse_alternative_list(current_node.get("Alternatives"))
return Result(
result_id=current_node.get("ResultId"),
start_time=current_node.get("StartTime"),
end_time=current_node.get("EndTime"),
is_partial=current_node.get("IsPartial"),
alternatives=alternatives,
channel_id=current_node.get("ChannelId"),
)