GoogleCloudContactcenterinsightsV1PhraseMatchRuleGroup.fromJson constructor

GoogleCloudContactcenterinsightsV1PhraseMatchRuleGroup.fromJson(
  1. 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,
      );