GoogleCloudContactcenterinsightsV1PhraseMatchRuleConfig.fromJson constructor

GoogleCloudContactcenterinsightsV1PhraseMatchRuleConfig.fromJson(
  1. Map json_
)

Implementation

GoogleCloudContactcenterinsightsV1PhraseMatchRuleConfig.fromJson(
  core.Map json_,
) : this(
      exactMatchConfig: json_.containsKey('exactMatchConfig')
          ? GoogleCloudContactcenterinsightsV1ExactMatchConfig.fromJson(
              json_['exactMatchConfig']
                  as core.Map<core.String, core.dynamic>,
            )
          : null,
      regexMatchConfig: json_.containsKey('regexMatchConfig')
          ? GoogleCloudContactcenterinsightsV1RegexMatchConfig.fromJson(
              json_['regexMatchConfig']
                  as core.Map<core.String, core.dynamic>,
            )
          : null,
    );