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