GoogleCloudContactcenterinsightsV1ConversationTranscriptTranscriptSegmentWordInfo.fromJson constructor

GoogleCloudContactcenterinsightsV1ConversationTranscriptTranscriptSegmentWordInfo.fromJson(
  1. Map json_
)

Implementation

GoogleCloudContactcenterinsightsV1ConversationTranscriptTranscriptSegmentWordInfo.fromJson(
    core.Map json_)
    : this(
        confidence: (json_['confidence'] as core.num?)?.toDouble(),
        endOffset: json_['endOffset'] as core.String?,
        startOffset: json_['startOffset'] as core.String?,
        word: json_['word'] as core.String?,
      );