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_.containsKey('negated')
? json_['negated'] as core.bool
: null,
query:
json_.containsKey('query') ? json_['query'] as core.String : null,
);