GoogleCloudContactcenterinsightsV1PhraseMatchRule.fromJson constructor
GoogleCloudContactcenterinsightsV1PhraseMatchRule.fromJson(
- Map json_
Implementation
GoogleCloudContactcenterinsightsV1PhraseMatchRule.fromJson(core.Map json_)
: this(
config: json_.containsKey('config')
? GoogleCloudContactcenterinsightsV1PhraseMatchRuleConfig.fromJson(
json_['config'] as core.Map<core.String, core.dynamic>,
)
: null,
negated: json_['negated'] as core.bool?,
query: json_['query'] as core.String?,
);