GoogleCloudContactcenterinsightsV1PhraseMatchRuleGroup.fromJson constructor
GoogleCloudContactcenterinsightsV1PhraseMatchRuleGroup.fromJson(
- Map json_
Implementation
GoogleCloudContactcenterinsightsV1PhraseMatchRuleGroup.fromJson(
core.Map json_,
) : this(
phraseMatchRules: (json_['phraseMatchRules'] as core.List?)
?.map(
(value) =>
GoogleCloudContactcenterinsightsV1PhraseMatchRule.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
type: json_['type'] as core.String?,
);