GoogleCloudContactcenterinsightsV1EntityMentionData.fromJson constructor
GoogleCloudContactcenterinsightsV1EntityMentionData.fromJson(
- Map json_
Implementation
GoogleCloudContactcenterinsightsV1EntityMentionData.fromJson(core.Map json_)
: this(
entityUniqueId: json_.containsKey('entityUniqueId')
? json_['entityUniqueId'] as core.String
: null,
sentiment: json_.containsKey('sentiment')
? GoogleCloudContactcenterinsightsV1SentimentData.fromJson(
json_['sentiment'] as core.Map<core.String, core.dynamic>)
: null,
type: json_.containsKey('type') ? json_['type'] as core.String : null,
);