GoogleCloudContactcenterinsightsV1IssueModelLabelStats.fromJson constructor
GoogleCloudContactcenterinsightsV1IssueModelLabelStats.fromJson(
- Map json_
Implementation
GoogleCloudContactcenterinsightsV1IssueModelLabelStats.fromJson(
core.Map json_)
: this(
analyzedConversationsCount:
json_.containsKey('analyzedConversationsCount')
? json_['analyzedConversationsCount'] as core.String
: null,
issueStats: json_.containsKey('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>),
),
)
: null,
unclassifiedConversationsCount:
json_.containsKey('unclassifiedConversationsCount')
? json_['unclassifiedConversationsCount'] as core.String
: null,
);