GoogleCloudContactcenterinsightsV1AutoLabelingRule.fromJson constructor
GoogleCloudContactcenterinsightsV1AutoLabelingRule.fromJson(
- Map json_
Implementation
GoogleCloudContactcenterinsightsV1AutoLabelingRule.fromJson(core.Map json_)
: this(
active: json_['active'] as core.bool?,
conditions: (json_['conditions'] as core.List?)
?.map(
(value) =>
GoogleCloudContactcenterinsightsV1AutoLabelingRuleLabelingCondition.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
createTime: json_['createTime'] as core.String?,
description: json_['description'] as core.String?,
displayName: json_['displayName'] as core.String?,
labelKey: json_['labelKey'] as core.String?,
labelKeyType: json_['labelKeyType'] as core.String?,
name: json_['name'] as core.String?,
updateTime: json_['updateTime'] as core.String?,
);