/*
 * 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/maps/addressvalidation/v1/address_validation_service.proto

package com.google.maps.addressvalidation.v1;

public interface ProvideValidationFeedbackRequestOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.maps.addressvalidation.v1.ProvideValidationFeedbackRequest)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * <pre>
   * Required. The outcome of the sequence of validation attempts.
   * If this field is set to `VALIDATION_CONCLUSION_UNSPECIFIED`, an
   * `INVALID_ARGUMENT` error will be returned.
   * </pre>
   *
   * <code>
   * .google.maps.addressvalidation.v1.ProvideValidationFeedbackRequest.ValidationConclusion conclusion = 1 [(.google.api.field_behavior) = REQUIRED];
   * </code>
   *
   * @return The enum numeric value on the wire for conclusion.
   */
  int getConclusionValue();
  /**
   *
   *
   * <pre>
   * Required. The outcome of the sequence of validation attempts.
   * If this field is set to `VALIDATION_CONCLUSION_UNSPECIFIED`, an
   * `INVALID_ARGUMENT` error will be returned.
   * </pre>
   *
   * <code>
   * .google.maps.addressvalidation.v1.ProvideValidationFeedbackRequest.ValidationConclusion conclusion = 1 [(.google.api.field_behavior) = REQUIRED];
   * </code>
   *
   * @return The conclusion.
   */
  com.google.maps.addressvalidation.v1.ProvideValidationFeedbackRequest.ValidationConclusion
      getConclusion();

  /**
   *
   *
   * <pre>
   * Required. The ID of the response that this feedback is for. This should be
   * the
   * [response_id][google.maps.addressvalidation.v1.ValidateAddressRequest.response_id]
   * from the first response in a series of address validation attempts.
   * </pre>
   *
   * <code>string response_id = 2 [(.google.api.field_behavior) = REQUIRED];</code>
   *
   * @return The responseId.
   */
  java.lang.String getResponseId();
  /**
   *
   *
   * <pre>
   * Required. The ID of the response that this feedback is for. This should be
   * the
   * [response_id][google.maps.addressvalidation.v1.ValidateAddressRequest.response_id]
   * from the first response in a series of address validation attempts.
   * </pre>
   *
   * <code>string response_id = 2 [(.google.api.field_behavior) = REQUIRED];</code>
   *
   * @return The bytes for responseId.
   */
  com.google.protobuf.ByteString getResponseIdBytes();
}
