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