GoogleCloudContentwarehouseV1RuleEvaluatorOutput.fromJson constructor
GoogleCloudContentwarehouseV1RuleEvaluatorOutput.fromJson(
- Map json_
Implementation
GoogleCloudContentwarehouseV1RuleEvaluatorOutput.fromJson(core.Map json_)
: this(
invalidRules: (json_['invalidRules'] as core.List?)
?.map((value) =>
GoogleCloudContentwarehouseV1InvalidRule.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
matchedRules: (json_['matchedRules'] as core.List?)
?.map((value) => GoogleCloudContentwarehouseV1Rule.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
triggeredRules: (json_['triggeredRules'] as core.List?)
?.map((value) => GoogleCloudContentwarehouseV1Rule.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
);