GoogleCloudContentwarehouseV1RuleEngineOutput.fromJson constructor
GoogleCloudContentwarehouseV1RuleEngineOutput.fromJson(
- Map json_
Implementation
GoogleCloudContentwarehouseV1RuleEngineOutput.fromJson(core.Map json_)
: this(
actionExecutorOutput:
json_.containsKey('actionExecutorOutput')
? GoogleCloudContentwarehouseV1ActionExecutorOutput.fromJson(
json_['actionExecutorOutput']
as core.Map<core.String, core.dynamic>,
)
: null,
documentName: json_['documentName'] as core.String?,
ruleEvaluatorOutput:
json_.containsKey('ruleEvaluatorOutput')
? GoogleCloudContentwarehouseV1RuleEvaluatorOutput.fromJson(
json_['ruleEvaluatorOutput']
as core.Map<core.String, core.dynamic>,
)
: null,
);