GoogleCloudContentwarehouseV1RuleEngineOutput.fromJson constructor

GoogleCloudContentwarehouseV1RuleEngineOutput.fromJson(
  1. 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_.containsKey('documentName')
            ? json_['documentName'] as core.String
            : null,
        ruleEvaluatorOutput: json_.containsKey('ruleEvaluatorOutput')
            ? GoogleCloudContentwarehouseV1RuleEvaluatorOutput.fromJson(
                json_['ruleEvaluatorOutput']
                    as core.Map<core.String, core.dynamic>)
            : null,
      );