GoogleCloudContactcenterinsightsV1ConversationLevelSentiment.fromJson constructor
GoogleCloudContactcenterinsightsV1ConversationLevelSentiment.fromJson(
- Map json_
Implementation
GoogleCloudContactcenterinsightsV1ConversationLevelSentiment.fromJson(
core.Map json_,
) : this(
channelTag: json_['channelTag'] as core.int?,
sentimentData: json_.containsKey('sentimentData')
? GoogleCloudContactcenterinsightsV1SentimentData.fromJson(
json_['sentimentData'] as core.Map<core.String, core.dynamic>,
)
: null,
);