def _parse_item()

in amazon_transcribe/deserialize.py [0:0]


    def _parse_item(self, current_node: Any) -> Item:
        return Item(
            start_time=current_node.get("StartTime"),
            end_time=current_node.get("EndTime"),
            item_type=current_node.get("Type"),
            content=current_node.get("Content"),
            vocabulary_filter_match=current_node.get("VocabularyFilterMatch"),
            speaker=current_node.get("Speaker"),
            confidence=current_node.get("Confidence"),
            stable=current_node.get("Stable"),
        )