GoogleCloudContactcenterinsightsV1IssueModelLabelStats.fromJson constructor
GoogleCloudContactcenterinsightsV1IssueModelLabelStats.fromJson(
- Map json_
Implementation
GoogleCloudContactcenterinsightsV1IssueModelLabelStats.fromJson(
core.Map json_,
) : this(
analyzedConversationsCount:
json_['analyzedConversationsCount'] as core.String?,
issueStats:
(json_['issueStats'] as core.Map<core.String, core.dynamic>?)?.map(
(key, value) => core.MapEntry(
key,
GoogleCloudContactcenterinsightsV1IssueModelLabelStatsIssueStats.fromJson(
value as core.Map<core.String, core.dynamic>,
),
),
),
unclassifiedConversationsCount:
json_['unclassifiedConversationsCount'] as core.String?,
);