/*
 * Copyright 2020 Google LLC
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/cloud/contentwarehouse/v1/rule_engine.proto

package com.google.cloud.contentwarehouse.v1;

public interface RuleEngineOutputOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.cloud.contentwarehouse.v1.RuleEngineOutput)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * <pre>
   * Name of the document against which the rules and actions were evaluated.
   * </pre>
   *
   * <code>string document_name = 3;</code>
   *
   * @return The documentName.
   */
  java.lang.String getDocumentName();
  /**
   *
   *
   * <pre>
   * Name of the document against which the rules and actions were evaluated.
   * </pre>
   *
   * <code>string document_name = 3;</code>
   *
   * @return The bytes for documentName.
   */
  com.google.protobuf.ByteString getDocumentNameBytes();

  /**
   *
   *
   * <pre>
   * Output from Rule Evaluator containing matched, unmatched and invalid rules.
   * </pre>
   *
   * <code>.google.cloud.contentwarehouse.v1.RuleEvaluatorOutput rule_evaluator_output = 1;</code>
   *
   * @return Whether the ruleEvaluatorOutput field is set.
   */
  boolean hasRuleEvaluatorOutput();
  /**
   *
   *
   * <pre>
   * Output from Rule Evaluator containing matched, unmatched and invalid rules.
   * </pre>
   *
   * <code>.google.cloud.contentwarehouse.v1.RuleEvaluatorOutput rule_evaluator_output = 1;</code>
   *
   * @return The ruleEvaluatorOutput.
   */
  com.google.cloud.contentwarehouse.v1.RuleEvaluatorOutput getRuleEvaluatorOutput();
  /**
   *
   *
   * <pre>
   * Output from Rule Evaluator containing matched, unmatched and invalid rules.
   * </pre>
   *
   * <code>.google.cloud.contentwarehouse.v1.RuleEvaluatorOutput rule_evaluator_output = 1;</code>
   */
  com.google.cloud.contentwarehouse.v1.RuleEvaluatorOutputOrBuilder
      getRuleEvaluatorOutputOrBuilder();

  /**
   *
   *
   * <pre>
   * Output from Action Executor containing rule and corresponding actions
   * execution result.
   * </pre>
   *
   * <code>.google.cloud.contentwarehouse.v1.ActionExecutorOutput action_executor_output = 2;</code>
   *
   * @return Whether the actionExecutorOutput field is set.
   */
  boolean hasActionExecutorOutput();
  /**
   *
   *
   * <pre>
   * Output from Action Executor containing rule and corresponding actions
   * execution result.
   * </pre>
   *
   * <code>.google.cloud.contentwarehouse.v1.ActionExecutorOutput action_executor_output = 2;</code>
   *
   * @return The actionExecutorOutput.
   */
  com.google.cloud.contentwarehouse.v1.ActionExecutorOutput getActionExecutorOutput();
  /**
   *
   *
   * <pre>
   * Output from Action Executor containing rule and corresponding actions
   * execution result.
   * </pre>
   *
   * <code>.google.cloud.contentwarehouse.v1.ActionExecutorOutput action_executor_output = 2;</code>
   */
  com.google.cloud.contentwarehouse.v1.ActionExecutorOutputOrBuilder
      getActionExecutorOutputOrBuilder();
}
