GoogleCloudContactcenterinsightsV1ConversationCorrelationInfo.fromJson constructor

GoogleCloudContactcenterinsightsV1ConversationCorrelationInfo.fromJson(
  1. Map json_
)

Implementation

GoogleCloudContactcenterinsightsV1ConversationCorrelationInfo.fromJson(
  core.Map json_,
) : this(
      correlationTypes: (json_['correlationTypes'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
      fullConversationCorrelationId:
          json_['fullConversationCorrelationId'] as core.String?,
      mergedFullConversationCorrelationId:
          json_['mergedFullConversationCorrelationId'] as core.String?,
    );